mcp-server-chart vs claude-ipc-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | claude-ipc-mcp by jdez427 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 132 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 8 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
claude-ipc-mcp · Summary
MCP server enabling AI-to-AI communication across different platforms like Claude, Gemini, and ChatGPT using natural language commands.
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
claude-ipc-mcp · Use cases
- Collaborative problem-solving where specialized AIs handle different aspects of a task
- Handoff scenarios where one AI completes a task and passes context to another
- Multi-platform AI workflows that leverage the strengths of different AI services
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"]
}
}
}claude-ipc-mcp · Install
Installation
Quick Install (2 minutes)
# 1. Clone the repo
git clone https://github.com/jdez427/claude-ipc-mcp.git
cd claude-ipc-mcp
# 2. Install UV package manager
curl -LsSf https://astral.sh/uv/install.sh | sh
# 3. Install dependencies
uv sync
# 4. For Claude Code: Run installer
./scripts/install-mcp.sh
# 5. Restart Claude Code and test
# Type: Register this instance as mynameClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"claude-ipc": {
"command": "uv",
"args": ["run", "claude-ipc-mcp"]
}
}
}