MCP Catalogs
首页

fetch vs web-agent-protocol

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

fetch
by modelcontextprotocol
web-agent-protocol
by OTA-Tech-AI
Stars★ 85,748★ 497
30天用量
综合分7648
官方
分类
网页抓取AI / LLM 工具效率工具
浏览器自动化网页抓取AI / LLM 工具
实现语言TypeScriptPython
最近提交本月11 个月前

fetch · 概述

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

web-agent-protocol · 概述

Web Agent Protocol 记录浏览器交互并转换为 MCP 服务器,实现网页自动化重放。

fetch · 使用场景

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

web-agent-protocol · 使用场景

  • 通过记录和重放用户交互来自动化重复性网页任务
  • 从浏览器工作流创建 MCP 服务器供 AI 代理自动化使用
  • 通过重放精确的用户交互序列来测试 Web 应用程序

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

web-agent-protocol · 安装

# 安装依赖
conda create -n WAP python=3.11
conda activate WAP
pip install -r requirements.txt

# 设置环境变量
set PYTHONPATH=/path/to/webagentprotocol  # Windows
export PYTHONPATH=/path/to/webagentprotocol  # Linux

# 创建包含 API 密钥的 .env 文件
OPENAI_API_KEY=sk-proj-...
DEEPSEEK_API_KEY=sk-...

# 安装 Chrome 扩展
# 参考 https://github.com/OTA-Tech-AI/webagentprotocol/tree/main/chrome-extension

对于 Claude Desktop 集成,添加到 claude_desktop_config.json

{
  "mcpServers": {
    "wap": {
      "command": "python",
      "args": ["/path/to/webagentprotocol/wap_service.py"]
    }
  }
}```
对比内容由 README + GitHub 公开数据自动生成,定期更新。