mcp-server-chart vs godot-mcp-pro
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | godot-mcp-pro by youichi-uda | |
|---|---|---|
| Stars | ★ 4,068 | ★ 340 |
| 30d uses | 10,239 | — |
| Score | 84 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | GDScript |
| 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.
godot-mcp-pro · Summary
Premium MCP server providing 172 tools for AI-powered Godot 4 game development with real-time editor integration.
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
godot-mcp-pro · Use cases
- AI-assisted Godot game development with direct editor control
- Automated scene creation and node manipulation through AI agents
- Real-time runtime analysis and debugging of Godot projects
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"]
}
}
}godot-mcp-pro · Install
Installation
- Install the Godot Plugin:
- Copy the addons/godot_mcp/ folder into your Godot project's addons/ directory - Enable the plugin: **Project → Project Settings → Plugins → Godot MCP Pro → Enable**
- Install the MCP Server (requires paid package):
``bash cd server npm install npm run build ``
- Configure Claude Code in
.mcp.json:
``json { "mcpServers": { "godot-mcp-pro": { "command": "node", "args": ["/path/to/server/build/index.js"] } } } ``