mcp-server-chart vs mcp-server-hub-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-server-hub-server by bsmi021 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 3 |
| 30d uses | 10,239 | — |
| Score | 84 | 30 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsProductivityAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 14 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-server-hub-server · Summary
A gateway that centralizes multiple MCP servers, allowing clients to access all tools through a single endpoint.
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-server-hub-server · Use cases
- Managing multiple MCP servers for different LLM clients like Cline and Cursor without duplication
- Centralizing tool access for teams using various AI development environments
- Dynamically updating MCP server configurations without restarting client applications
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-server-hub-server · Install
Installation
- Clone the repository
- Install dependencies:
npm install - Build the project:
npm run build - Configure
mcp_hub_config.jsonin the project root - Start the gateway server:
npm start
Client Configuration
Add this entry to your LLM client's MCP settings:
{
"mcpServers": {
"gateway-client": {
"command": "node",
"args": [
"/path/to/mcp-server-hub-server/dist/client/client.js"
],
"options": {
"cwd": "/path/to/mcp-server-hub-server"
}
}
}
}