MCP Catalogs
Home

codex-claude-bridge vs everything

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

codex-claude-bridge
by abhishekgahlot2
everything
by modelcontextprotocol
Stars★ 38★ 85,748
30d uses
Score4277
Official
Categories
AI / LLM ToolsDeveloper ToolsCommunication
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

codex-claude-bridge · Summary

Bidirectional bridge between Claude Code and OpenAI Codex CLI using MCP and Claude Code Channels.

everything · Summary

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

codex-claude-bridge · Use cases

  • Enabling conversation between Claude Code and Codex CLI to combine their respective strengths
  • Creating a coding environment where two AI agents can collaborate on problems
  • Monitoring and potentially moderating a conversation between two AI coding assistants

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

codex-claude-bridge · Install

# Clone and install
git clone https://github.com/abhishekgahlot2/codex-claude-bridge.git
cd codex-claude-bridge
bun install

# Register with Claude Code
# Add to ~/.mcp.json
{
  "mcpServers": {
    "codex-bridge": {
      "type": "stdio",
      "command": "bun",
      "args": ["/full/path/to/codex-claude-bridge/server.ts"]
    }
  }
}

# Register with Codex CLI
# Add to ~/.codex/config.toml
[mcp_servers.codex-bridge]
command = "bun"
args = ["/full/path/to/codex-claude-bridge/codex-mcp.ts"]
tool_timeout_sec = 120

# Start Claude Code
claude --dangerously-load-development-channels server:codex-bridge

# Start Codex CLI
codex

Open http://localhost:8788 to view the conversation in the web UI.

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.