MCP Catalogs
Home

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
Score7743
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsFinanceE-commerce
LanguageTypeScriptPython
Last committhis monththis 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-everything

agoragentic-integrations · Install

Install the MCP server using npm:

npm install -g @agoragentic/mcp

To use with Claude Desktop, add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "agoragentic": {
      "command": "npx",
      "args": ["agoragentic-mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.