Back to MCP directory
publicPublicdnsLocal runtime

naver-search-mcp

Naver搜索MCP服务器,提供全面的Naver服务搜索和数据分析功能

article

README

🚀 韩国Naver搜索MCP服务器

这是一个集成了Naver搜索API和DataLab API的MCP服务器,可实现对多个Naver服务的全面搜索,还能进行数据趋势分析。

🚀 快速开始

本服务器集成了Naver搜索API和DataLab API,能帮助你全面搜索多个Naver服务并进行数据趋势分析。使用前,你需要获取Naver API密钥,并确保满足安装要求。

✨ 主要特性

  • 集成Naver搜索API和DataLab API,实现多服务搜索与数据趋势分析。
  • 支持多种工具,涵盖网页、博客、新闻、购物、图片、视频、地图、维基百科搜索,以及翻译、图像识别、面部识别等功能。

📦 安装指南

安装要求

  • Naver API密钥
  • Node.js 18.0或更高版本
  • npm 8.0或更高版本(可选)
  • Docker(可选)

获取Naver API密钥

  1. 访问Naver开放平台官网。
  2. 创建开发者账户并登录。
  3. 申请所需的API密钥。

安装方式

快速安装(通过Smithery)

针对不同AI客户端的安装命令如下:

  • Claude Desktop
npx -y @isnow890/naver-search-mcp
  • Cursor AI
npx -y @isnow890/naver-search-mcp

手动安装

设置环境变量:

export NAVER_CLIENT_ID=your_client_id
export NAVER_CLIENT_SECRET=your_client_secret

运行命令:

npx -y @isnow890/naver-search-mcp

或使用Docker:

docker run -i --rm \
  -e NAVER_CLIENT_ID=your_client_id \
  -e NAVER_CLIENT_SECRET=your_client_secret \
  mcp/naver-search

📚 详细文档

工具详情

以下是服务器支持的完整工具列表: | 工具名称 | 功能描述 | |-----------------------|--------------------------------------------------------------------------| | search_webkr | 搜索Naver网页文档 | | search_blog | 搜索Naver博客内容 | | search_news | 搜索Naver新闻文章 | | search_shop | 搜索Naver购物信息 | | search_image | 搜索Naver图片资源 | | search_video | 搜索Naver视频资源 | | search_map | 搜索Naver地图服务 | | search_wiki | 搜索维基百科内容(通过Naver) | | translate | 实现语言翻译功能 | | ocr | 提供图像识别服务 | | face_recognition | 支持面部识别功能 |

配置指南

Claude Desktop配置

claude_desktop_config.json中添加:

{
  "mcpServers": {
    "naver-search": {
      "command": "npx",
      "args": ["-y", "@isnow890/naver-search-mcp"],
      "env": {
        "NAVER_CLIENT_ID": "your_client_id",
        "NAVER_CLIENT_SECRET": "your_client_secret"
      }
    }
  }
}

Cursor AI配置

mcp.json中添加:

{
  "mcpServers": {
    "naver-search": {
      "command": "npx",
      "args": ["-y", "@isnow890/naver-search-mcp"],
      "env": {
        "NAVER_CLIENT_ID": "your_client_id",
        "NAVER_CLIENT_SECRET": "your_client_secret"
      }
    }
  }
}

对于Docker配置:

{
  "mcpServers": {
    "naver-search": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "NAVER_CLIENT_ID=your_client_id",
        "-e",
        "NAVER_CLIENT_SECRET=your_client_secret",
        "mcp/naver-search"
      ]
    }
  }
}

构建指南

使用以下命令构建Docker镜像:

docker build -t mcp/naver-search .

版本历史

1.0.2

  • 更新内容:修复了已知bug并优化了性能(2023年4月26日)

1.0.1

  • 新增功能:增加了对新API端点的支持,修复了部分错误处理问题(2023年4月26日)

1.0.0

  • 初始版本发布(2023年4月26日)

📄 许可证

MIT License

⚠️ 重要提示

如果想通过npm安装MCP,请不要使用以下包:naver-search-mcp。正确的方法是使用官方提供的MCP服务器。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client