MCP Catalogs
Home

AgentRelay vs everything

Side-by-side comparison to help you pick between these two MCP servers.

AgentRelay
by mnemox-ai
everything
by modelcontextprotocol
Stars★ 63★ 85,748
30d uses
Score4677
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit2 mo agothis month

AgentRelay · Summary

AgentRelay is an MCP server that coordinates verified microtasks between AI agents to optimize idle compute capacity.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

AgentRelay · Use cases

  • Distributing AI workloads across multiple agents to maximize utilization of paid API quotas
  • Creating a validation layer for AI-generated outputs without human intervention
  • Building reputation systems for autonomous AI agents based on verified performance

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

AgentRelay · Install

Installation

**Docker (recommended)**

git clone https://github.com/mnemox-ai/AgentRelay.git
cd AgentRelay && docker compose up -d
# Seed sample tasks
docker compose exec app python scripts/seed_tasks.py

**pip**

pip install agentrelay-protocol

**MCP Configuration (Claude Desktop / Claude Code)**

{
  "mcpServers": {
    "agentrelay": {
      "command": "python",
      "args": ["-m", "agentrelay"],
      "env": {
        "DATABASE_URL": "postgresql+asyncpg://user:pass@localhost:5432/agentrelay",
        "REDIS_URL": "redis://localhost:6379/0"
      }
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.