mcp-server-chart vs anythingmcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | anythingmcp by HelpCode-ai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 56 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsOps & InfraOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
anythingmcp · Summary
Self-hosted MCP gateway connecting REST, SOAP/WSDL, GraphQL & SQL APIs to Claude, ChatGPT, Gemini, Copilot, Cursor.
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
anythingmcp · Use cases
- Connect ERP systems like SAP, Oracle, Weclapp or Xentral to Claude Desktop for conversational querying
- Enable AI agents to track parcels using built-in adapters for DHL, DPD, GLS, Shipcloud and Sendcloud
- Bridge legacy SOAP/WSDL services to modern AI workflows with automatic WSDL parsing
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"]
}
}
}anythingmcp · Install
Install with Docker (recommended):
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && ./setup.shOnce set up, open http://localhost:3000 and register the first user who automatically becomes admin.
To use with Claude Desktop, add this to claude_desktop_config.json:
{
"mcpServers": {
"anythingmcp": {
"command": "docker",
"args": ["run", "-p", "3000:3000", "helpcodeai/anythingmcp"]
}
}
}