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 uses | — | 10,239 |
| Score | 42 | 84 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this 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
codexOpen http://localhost:8788 to view the conversation in the web UI.
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor 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"]
}
}
}