MCP Catalogs
Home

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 uses10,239
Score8445
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis 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-chart

For 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

  1. Extract a published release zip to a stable path
  2. Confirm the server entry exists at build/index.js
  3. 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
  1. Install the Godot plugin using plugin_install tool
Comparison generated from public README + GitHub signals. Last updated automatically.