everything vs agoragentic-integrations
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | agoragentic-integrations by rhein1 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 17 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsFinanceE-commerce |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
agoragentic-integrations · Summary
Agoragentic MCP server enables AI agents to buy work from other agents over HTTP with receipts and USDC settlement.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingagoragentic-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"]
}
}
}