mcp-server-chart vs roundtable
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | roundtable by askbudi | |
|---|---|---|
| Stars | ★ 4,068 | ★ 107 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 7 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
roundtable · Summary
Zero-configuration MCP server coordinating multiple AI coding assistants through intelligent auto-discovery.
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
roundtable · Use cases
- Debugging complex production issues by simultaneously analyzing logs from multiple AI agents
- Performance optimization by leveraging different models for SQL analysis, frontend profiling, and code refactoring
- Code review and implementation using specialized models for different programming languages and frameworks
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"]
}
}
}roundtable · Install
Installation
Using pip (Standard)
pip install roundtable-aiUsing UV/UVX (Recommended for faster installs)
uvx roundtable-ai@latestClaude Desktop Integration
Add to ~/.config/claude_desktop_config.json:
{
"mcpServers": {
"roundtable-ai": {
"command": "roundtable-ai",
"env": {
"CLI_MCP_SUBAGENTS": "codex,claude,cursor,gemini"
}
}
}
}