mcp-server-chart vs mcp-hub
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-hub by ravitemer | |
|---|---|---|
| Stars | ★ 4,068 | ★ 487 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsProductivityAI / LLM Tools |
| Language | TypeScript | JavaScript |
| 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.
mcp-hub · Summary
A centralized hub for managing multiple MCP servers with unified endpoints and dynamic server monitoring.
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
mcp-hub · Use cases
- Organizing multiple MCP servers in a single project to avoid configuration complexity
- Creating a gateway for MCP clients to access various tools through one connection
- Managing development environments with hot-reload capabilities for MCP servers
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"]
}
}
}mcp-hub · Install
npm install -g mcp-hubStart the hub server:
mcp-hub --port 3000 --config path/to/config.jsonClaude Desktop configuration:
{
"mcpServers": {
"Hub": {
"url": "http://localhost:37373/mcp"
}
}
}