MCP Catalogs
首页

fetch vs powhttp-mcp

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

fetch
by modelcontextprotocol
powhttp-mcp
by usestring
Stars★ 85,748★ 71
30天用量
综合分7648
官方
分类
网页抓取AI / LLM 工具效率工具
开发者工具网页抓取可观测性
实现语言TypeScriptGo
最近提交本月2 个月前

fetch · 概述

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

powhttp-mcp · 概述

一个MCP服务器,让AI助手能够分析由powhttp捕获的HTTP流量,并提供高级调试功能。

fetch · 使用场景

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

powhttp-mcp · 使用场景

  • 调试网络爬虫以识别反机器人检测机制
  • 分析API行为以理解数据结构和端点
  • 从观察到的HTTP流量模式生成爬虫

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

powhttp-mcp · 安装

安装

通过go install安装:

go install github.com/usestring/powhttp-mcp/cmd/powhttp-mcp@latest

添加到Claude Desktop

将以下内容添加到您的Claude Desktop配置文件(~/Library/Application Support/Claude/claude_desktop_config.json,macOS系统):

{
  "mcpServers": {
    "powhttp": {
      "command": "powhttp-mcp",
      "env": {
        "POWHTTP_BASE_URL": "http://localhost:7777",
        "POWHTTP_PROXY_URL": "http://localhost:8888"
      }
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。