这是一个集成了Naver搜索API和DataLab API的MCP服务器,可实现对多个Naver服务的全面搜索,还能进行数据趋势分析。
本服务器集成了Naver搜索API和DataLab API,能帮助你全面搜索多个Naver服务并进行数据趋势分析。使用前,你需要获取Naver API密钥,并确保满足安装要求。
针对不同AI客户端的安装命令如下:
npx -y @isnow890/naver-search-mcp
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_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"
}
}
}
}
在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 .
MIT License
⚠️ 重要提示
如果想通过npm安装MCP,请不要使用以下包:
naver-search-mcp。正确的方法是使用官方提供的MCP服务器。