mcp-server-chart vs eraser-io-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | eraser-io-mcp-server by buck-0x | |
|---|---|---|
| Stars | ★ 4,068 | ★ 21 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsProductivityAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 5 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
eraser-io-mcp-server · Summary
A Python MCP server for rendering various diagram types using the Eraser API with customizable themes and output formats.
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
eraser-io-mcp-server · Use cases
- Generate documentation diagrams in AI assistants that support MCP
- Create sequence diagrams and flowcharts directly from conversational prompts
- Produce cloud architecture diagrams with customizable themes
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"]
}
}
}eraser-io-mcp-server · Install
Installation
Using pip:
pip install -e .Using uv:
uv pip install -e .Claude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"eraser": {
"command": "python",
"args": ["/path/to/eraser-io-mcp-server/main.py"]
}
}
}For HTTP transport:
{
"mcpServers": {
"eraser": {
"type": "streamable-http",
"url": "http://localhost:8000/mcp",
"headers": {
"Authorization": "Bearer your_auth_token"
}
}
}
}