MCP Catalogs
Home

everything vs agent-bridge

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

everything
by modelcontextprotocol
agent-bridge
by raysonmeng
Stars★ 85,748★ 118
30d uses
Score7747
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsCommunication
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

agent-bridge · Summary

Bidirectional bridge between Claude Code and Codex via MCP protocol for collaborative workflows.

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

agent-bridge · Use cases

  • Collaborative coding workflows between Claude AI and Codex
  • Real-time message passing between AI assistants
  • Human-in-the-loop multi-agent systems

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

agent-bridge · Install

Installation via Plugin Marketplace (recommended)

  1. In Claude Code, add the AgentBridge marketplace:

``bash /plugin marketplace add raysonmeng/agent-bridge ``

  1. Install the plugin:

``bash /plugin install agentbridge@agentbridge ``

  1. Reload plugins to activate:

``bash /reload-plugins ``

  1. Install the CLI globally:

``bash npm install -g @raysonmeng/agentbridge ``

  1. Generate project config (optional):

``bash abg init ``

  1. Start Claude Code with AgentBridge channel enabled:

``bash abg claude ``

  1. Start Codex TUI connected to the bridge:

``bash abg codex ``

Comparison generated from public README + GitHub signals. Last updated automatically.