MCP Catalogs
首页

cortex-scout vs fetch

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

cortex-scout
by cortex-works
fetch
by modelcontextprotocol
Stars★ 65★ 85,748
30天用量
综合分4676
官方
分类
浏览器自动化网页抓取AI / LLM 工具
网页抓取AI / LLM 工具效率工具
实现语言RustTypeScript
最近提交1 个月前本月

cortex-scout · 概述

为AI代理提供统一网页抓取和有状态自动化引擎,支持MCP集成。

fetch · 概述

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

cortex-scout · 使用场景

  • 需要反机器人处理的令牌高效网页检索的 AI 代理
  • 替代 Playwright 等重型框架的自动化测试工作流
  • 需要深度多跳搜索和提取的研究系统

fetch · 使用场景

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

cortex-scout · 安装

安装

选项 A — 预构建二进制文件

从 GitHub Releases 下载最新版本:

  • cortex-scout-mcp — MCP stdio 服务器(推荐用于 VS Code/Cursor/Claude Desktop)
  • cortex-scout — 可选的 HTTP 服务器

选项 B — 从源码构建

先安装 protoc,然后:

git clone https://github.com/cortex-works/cortex-scout.git
cd cortex-scout
cargo build --release --manifest-path mcp-server/Cargo.toml --bin cortex-scout-mcp

Claude Desktop 集成

添加到 Claude Desktop 配置:

{
  "mcpServers": {
    "cortex-scout": {
      "command": "env",
      "args": [
        "RUST_LOG=warn",
        "CORTEX_SCOUT_TOOL_TIMEOUT_SECS=90",
        "/path/to/cortex-scout-mcp"
      ]
    }
  }
}

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 公开数据自动生成,定期更新。