mcp-server-chart vs blockbench-mcp-plugin
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | blockbench-mcp-plugin by jasonjgardner | |
|---|---|---|
| Stars | ★ 4,068 | ★ 117 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsMediaAI / LLM Tools |
| Language | TypeScript | TypeScript |
| 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.
blockbench-mcp-plugin · Summary
A TypeScript plugin that adds MCP server functionality to Blockbench for 3D model editing.
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
blockbench-mcp-plugin · Use cases
- AI-assisted 3D model editing and manipulation in Blockbench
- Automated texture generation for 3D models
- Integration of AI model generation tools with 3D workflows
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"]
}
}
}blockbench-mcp-plugin · Install
Installation
1. Install the Blockbench Plugin
Open Blockbench desktop, go to File > Plugins, click 'Load Plugin from URL' and paste: https://jasonjgardner.github.io/blockbench-mcp-plugin/mcp.js
2. Configure the MCP Server
In Blockbench settings: Settings > General > set MCP Server Port and MCP Server Endpoint (default: :3000/bb-mcp)
3. Configure MCP Client
**Claude Desktop:** Add to claude_desktop_config.json:
{
"mcpServers": {
"blockbench": {
"command": "npx",
"args": ["mcp-remote", "http://localhost:3000/bb-mcp"]
}
}
}**VS Code:** Create .vscode/mcp.json:
{
"servers": {
"blockbench": {
"url": "http://localhost:3000/bb-mcp",
"type": "http"
}
}
}**Other clients:** See README for configuration options for Ollama, Cline, Antigravity, and OpenCode.