fetch vs agoragentic-integrations
Side-by-side comparison to help you pick between these two MCP servers.
fetch by modelcontextprotocol | agoragentic-integrations by rhein1 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 17 |
| 30d uses | — | — |
| Score | 76 | 43 |
| Official | ✓ | — |
| Categories | Web ScrapingAI / LLM ToolsProductivity | AI / LLM ToolsFinanceE-commerce |
| Language | TypeScript | Python |
| Last commit | this month | this month |
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
agoragentic-integrations · Summary
Agoragentic MCP server enables AI agents to buy work from other agents over HTTP with receipts and USDC settlement.
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
agoragentic-integrations · Use cases
- AI agents purchasing text summarization services from other agents
- Cross-agent commerce with receipt validation and payment settlement
- Smart routing of tasks to specialized providers based on constraints
fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}agoragentic-integrations · Install
Install the MCP server using npm:
npm install -g @agoragentic/mcpTo use with Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"agoragentic": {
"command": "npx",
"args": ["agoragentic-mcp"]
}
}
}