MCP Catalogs
首页

naver-search-mcp vs fetch

并排对比,帮你在这两个 MCP server 之间做选择。

naver-search-mcp
by isnow890
fetch
by modelcontextprotocol
Stars★ 68★ 85,748
30天用量
综合分4876
官方
分类
搜索电商AI / LLM 工具
网页抓取AI / LLM 工具效率工具
实现语言TypeScriptTypeScript
最近提交本月本月

naver-search-mcp · 概述

Naver Search API 集成的 MCP 服务器,提供全面的搜索和数据分析工具。

fetch · 概述

一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。

naver-search-mcp · 使用场景

  • 通过搜索和趋势分析进行韩国市场研究
  • 在 Naver 生态系统服务中发现内容
  • 电商产品研究和竞争对手分析

fetch · 使用场景

  • 大模型阅读新闻文章和博客
  • 网页内容分析
  • 从公共网站检索信息
  • 分块读取大型网页文档

naver-search-mcp · 安装

安装

方法 1:NPX 安装(推荐)

对于 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"
      }
    }
  }
}
方法 2:本地安装
  1. 克隆并构建源代码:
git clone https://github.com/isnow890/naver-search-mcp.git
cd naver-search-mcp
npm install
npm run build
  1. 更新 Claude Desktop 配置,指向构建后的文件:
{
  "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"
      }
    }
  }
}

先决条件:Naver Developers API 密钥,Node.js 18+,NPM 8+

fetch · 安装

安装

**使用uv(推荐)** 无需特定安装。使用uvx直接运行服务器:

uvx mcp-server-fetch

**使用PIP** 通过pip安装:

pip install mcp-server-fetch

然后运行:

python -m mcp_server_fetch

Claude桌面配置

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。