MCP Catalogs
Home

codex-claude-bridge vs mcp-server-chart

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

codex-claude-bridge
by abhishekgahlot2
mcp-server-chart
by antvis
Stars★ 38★ 4,068
30d uses10,239
Score4284
Official
Categories
AI / LLM ToolsDeveloper ToolsCommunication
AI / LLM ToolsDeveloper ToolsProductivity
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.

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

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

mcp-server-chart · Use cases

  • Data analysts creating visual reports from datasets
  • AI assistants generating custom charts based on user requests
  • Web applications embedding visualization capabilities via HTTP API

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.

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For Desktop Apps (e.g., Claude Desktop, VSCode):

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "npx",
      "args": ["-y", "@antv/mcp-server-chart"]
    }
  }
}

For Windows:

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.