mcp-server-chart vs magg
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | magg by sitbon | |
|---|---|---|
| Stars | ★ 4,068 | ★ 133 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 9 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
magg · Summary
MCP Aggregator server that manages multiple MCP servers, enabling dynamic tool discovery and configuration.
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
magg · Use cases
- Extending LLM capabilities by dynamically adding MCP servers based on specific task requirements
- Creating modular AI systems where tools can be loaded/unloaded as needed
- Building centralized tool management for multi-agent systems
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"]
}
}
}magg · Install
Installation
The recommended way to install Magg is using uv:
# Install as a tool
uv tool install magg
# Run with stdio transport
magg serve
# Run with HTTP transport
magg serve --httpFor Claude Desktop configuration, add to claude_desktop_config.json:
{
"mcpServers": {
"magg": {
"command": "uv",
"args": ["tool", "run", "magg", "serve"]
}
}
}