MCP Catalogs
首页

fetch vs notion-export-mcp-server

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

fetch
by modelcontextprotocol
notion-export-mcp-server
by syucream
Stars★ 85,748★ 1
30天用量
综合分7628
官方
分类
网页抓取AI / LLM 工具效率工具
Notion 集成知识库 / RAG效率工具
实现语言TypeScriptTypeScript
最近提交本月13 个月前

fetch · 概述

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

notion-export-mcp-server · 概述

通过非官方 API 将 Notion 页面导出为 Markdown 的 MCP 服务器。

fetch · 使用场景

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

notion-export-mcp-server · 使用场景

  • AI 助手可以阅读和分析 Notion 文档
  • 导出 Notion 知识库供 LLM 处理
  • 将 Notion 内容集成到 AI 驱动的工作流程中

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"]
    }
  }
}

notion-export-mcp-server · 安装

npm install notion-export-mcp-server

添加到 Claude Desktop 配置:

{
  "mcpServers": {
    "notion-export": {
      "command": "npx",
      "args": [
        "-y",
        "notion-export-mcp-server"
      ],
      "env": {
        "NOTION_TOKEN_V2": "<您的令牌>",
        "NOTION_FILE_TOKEN": "<您的令牌>"
      }
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。