用于集成 Naver 搜索 API 和 DataLab API 的 MCP 服务器,支持在各种 Naver 服务中进行综合搜索及数据分析。
search_webkr 工具,用于韩文网络搜索get_current_korean_time 工具,提供韩国标准时间上下文find_category 工具,支持模糊匹配,无需手动检查 URL 中的类别编号要获取完整的类别代码列表,可以从 Naver 购物合作伙伴中心下载,或者通过浏览 Naver 购物类别来提取它们。
// 时尚趋势发现
find_category("fashion") → 查看顶级时尚类别及其代码
datalab_shopping_category → 分析季节性时尚趋势
datalab_shopping_age → 确定时尚目标人群
datalab_shopping_keywords → 对比“连衣裙”、“夹克”和“外套”的表现
// 美妆行业分析
find_category("cosmetics") → 查找美妆类别
datalab_shopping_gender → 95%女性 vs 5%男性购物者
datalab_shopping_device → 移动端主导美妆购物
datalab_shopping_keywords → “口红” vs “唇彩”的关键词表现
// 科技产品洞察
find_category("smartphone") → 查看电子类别
datalab_shopping_category → 跟踪 iPhone vs Galaxy 趋势
datalab_shopping_age → 主要智能手机购买者为20-30岁
datalab_shopping_device → PC vs 移动端购物行为
// 节假日购物分析
find_category("gift") → 礼品类别
datalab_shopping_category → 黑色星期五、圣诞节趋势
datalab_shopping_keywords → “母亲节礼物” vs “生日礼物”
datalab_shopping_age → 基于年龄的礼品购买模式
// 健身市场分析
find_category("exercise") → 运动/健身类别
datalab_shopping_gender → 男性 vs 女性健身支出
datalab_shopping_age → 主要健身人群(20-40岁)
datalab_shopping_keywords → “家庭锻炼” vs “健身房”趋势分析
find_category 探索市场细分| 类别 | 代码 | 韩文 |
|---|---|---|
| 时尚/服装 | 50000000 | 패션의류 |
| 化妆品/美容 | 50000002 | 화장품/미용 |
| 数码/电子产品 | 50000003 | 디지털/가전 |
| 运动/休闲 | 50000004 | 스포츠/레저 |
| 食品/饮料 | 50000008 | 식품/음료 |
| 健康/医疗用品 | 50000009 | 건강/의료용품 |
💡 提示:使用 find_category 进行模糊搜索,如“美容”、“时尚”、“电子产品”,轻松找到类别。
使用 NPX 是最可靠的方式。有关详细包信息,请参阅 NPM 包页面。
添加到 Claude Desktop 配置文件(Windows 上为 %APPDATA%\Claude\claude_desktop_config.json,macOS/Linux 上为 ~/Library/Application Support/Claude/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"
}
}
}
}
⚠️ 重要通知:由于 Smithery WebSocket 中继基础设施的问题,Smithery 安装可能会遇到连接超时和冻结。这是平台限制而非此 MCP 服务器的错误。为了稳定使用,我们强烈建议使用方法 1(NPX 安装)。
Error -32001: 请求超时如果仍然想尝试 Smithery:
npx -y @smithery/cli@latest install @isnow890/naver-search-mcp --client claude
# Cursor
npx -y @smithery/cli@latest install @isnow890/naver-search-mcp --client cursor
# Windsurf
npx -y @smithery/cli@latest install @isnow890/naver-search-mcp --client windsurf
# Cline
npx -y @smithery/cli@latest install @isnow890/naver-search-mcp --client cline
如果在 Smithery 上遇到超时,请切换回方法 1(NPX)以获得稳定的体验。
适用于本地开发或自定义修改:
git clone https://github.com/isnow890/naver-search-mcp.git
cd naver-search-mcp
npm install
npm run build
cd /path/to/naver-search-mcp
npm install
npm run build
⚠️ 重要:安装后必须运行 npm run build 以生成包含编译后的 JavaScript 文件的 dist 文件夹。
构建完成后,您需要以下信息:
添加到 Claude Desktop 配置文件(%APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"naver-search": {
"type": "stdio",
"command": "cmd",
"args": [
"/c",
"node",
"C:\\path\\to\\naver-search-mcp\\dist\\src\\index.js"
],
"cwd": "C:\\path\\to\\naver-search-mcp",
"env": {
"NAVER_CLIENT_ID": "your-naver-client-id",
"NAVER_CLIENT_SECRET": "your-naver-client-secret"
}
}
}
}
添加到 Claude Desktop 配置文件(~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"naver-search": {
"type": "stdio",
"command": "node",
"args": ["/path/to/naver-search-mcp/dist/src/index.js"],
"cwd": "/path/to/naver-search-mcp",
"env": {
"NAVER_CLIENT_ID": "your-naver-client-id",
"NAVER_CLIENT_SECRET": "your-naver-client-secret"
}
}
}
}
⚠️ 重要:您必须更改上述配置中的以下路径为您实际的安装路径:
C:\\path\\to\\naver-search-mcp 更改为您的实际下载文件夹路径/path/to/naver-search-mcp 更改为您的实际下载文件夹路径dist/src/index.js(而不是仅仅 index.js)查找您的路径:
# 检查当前位置
pwd
# 绝对路径示例
# Windows: C:\Users\username\Downloads\naver-search-mcp
# macOS: /Users/username/Downloads/naver-search-mcp
# Linux: /home/username/Downloads/naver-search-mcp
完成配置后,完全关闭并重新启动 Claude Desktop 以激活 Naver Search MCP 服务器。
用于容器化部署:
docker run -i --rm \
-e NAVER_CLIENT_ID=your_client_id \
-e NAVER_CLIENT_SECRET=your_client_secret \
mcp/naver-search
Docker 配置用于 Claude Desktop:
{
"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 许可证