mcp-server-chart vs godot-devtool
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | godot-devtool by wangdiandao | |
|---|---|---|
| Stars | ★ 4,068 | ★ 42 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| 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.
godot-devtool · Summary
Godot 4 MCP server for AI-assisted project inspection, editing, validation, and runtime automation.
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-devtool · Use cases
- AI-assisted Godot project setup and configuration
- Live scene and script editing through AI assistants
- Automated testing and QA validation during runtime
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-devtool · Install
Installation
From Local Build
- Extract a published release zip to a stable path
- Confirm the server entry exists at
build/index.js - Add this MCP server to your client configuration:
{
"mcpServers": {
"godot-devtool": {
"command": "node",
"args": ["E:/godot-devtool/build/index.js"],
"env": {
"GODOT_PATH": "D:/Program Files/Godot/Godot_v4.x.exe",
"GODOT_DEVTOOL_WS_PORT": "8766"
}
}
}
}From Source
git clone https://github.com/wangdiandao/godot-devtool.git
cd godot-devtool
npm install
npm run build- Install the Godot plugin using
plugin_installtool