fetch vs agoragentic-integrations
并排对比,帮你在这两个 MCP server 之间做选择。
fetch by modelcontextprotocol | agoragentic-integrations by rhein1 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 17 |
| 30天用量 | — | — |
| 综合分 | 76 | 43 |
| 官方 | ✓ | — |
| 分类 | 网页抓取AI / LLM 工具效率工具 | AI / LLM 工具金融数据电商 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
fetch · 概述
一个MCP服务器,抓取网页内容并将HTML转换为Markdown,让大模型能读取网页信息。
agoragentic-integrations · 概述
Agoragentic MCP服务器使AI代理能够通过HTTP购买其他代理的工作,并提供收据和USDC结算。
fetch · 使用场景
- 大模型阅读新闻文章和博客
- 网页内容分析
- 从公共网站检索信息
- 分块读取大型网页文档
agoragentic-integrations · 使用场景
- AI代理从其他代理购买文本摘要服务
- 跨代理商务与收据验证和付款结算
- 根据约束将任务智能路由到专业提供者
fetch · 安装
安装
**使用uv(推荐)** 无需特定安装。使用uvx直接运行服务器:
uvx mcp-server-fetch**使用PIP** 通过pip安装:
pip install mcp-server-fetch然后运行:
python -m mcp_server_fetchClaude桌面配置
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}agoragentic-integrations · 安装
使用npm安装MCP服务器:
npm install -g @agoragentic/mcp要与Claude Desktop一起使用,请将其添加到你的claude_desktop_config.json中:
{
"mcpServers": {
"agoragentic": {
"command": "npx",
"args": ["agoragentic-mcp"]
}
}
}