mcp-server-chart vs mcp-batchit
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-batchit by ryanjoachim | |
|---|---|---|
| Stars | ★ 4,068 | ★ 59 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 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-batchit · Summary
MCP BatchIt aggregates multiple tool calls into single batch requests, reducing overhead and token usage in AI agent workflows.
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-batchit · Use cases
- Batching multiple file operations (read, write, create directory) into a single request
- Reducing API token overhead in multi-step AI agent workflows
- Executing parallel tool calls to improve response time in AI 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-batchit · Install
git clone https://github.com/ryanjoachim/mcp-batchit.git
cd mcp-batchit
npm install
npm run build
npm startFor Claude Desktop, add to config.json:
{
"mcpServers": {
"batchit": {
"command": "node",
"args": ["/path/to/mcp-batchit/dist/index.js"]
}
}
}