MCP Catalogs
Home

unity-mcp-plugin vs mcp-server-chart

Side-by-side comparison to help you pick between these two MCP servers.

unity-mcp-plugin
by AnkleBreaker-Studio
mcp-server-chart
by antvis
Stars★ 97★ 4,068
30d uses10,239
Score5084
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
AI / LLM ToolsDeveloper ToolsProductivity
LanguageC#TypeScript
Last commit1 mo agothis month

unity-mcp-plugin · Summary

Unity MCP Plugin bridges Unity Editor with Claude, Cursor & other AI assistants via 288 tools for game development.

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

unity-mcp-plugin · Use cases

  • AI-assisted game creation from scratch in minutes
  • Automated Unity project builds and deployment
  • Real-time debugging and profiling through AI interfaces
  • Automated shader creation and optimization

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

unity-mcp-plugin · Install

Installation

  1. Open Unity > **Window** > **Package Manager**
  2. Click the **+** button > **Add package from git URL...**
  3. Enter: https://github.com/AnkleBreaker-Studio/unity-mcp-plugin.git
  4. Click **Add**

Verify by visiting http://127.0.0.1:7890/api/ping in your browser.

MCP Server Setup

This plugin requires the companion Node.js MCP Server. See [unity-mcp-server](https://github.com/AnkleBreaker-Studio/unity-mcp-server) for installation.

Claude Desktop Configuration

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "unity": {
      "command": "node",
      "args": ["path/to/unity-mcp-server.js"],
      "env": {
        "UNITY_PROJECT_PATH": "/path/to/your/unity/project"
      }
    }
  }
}

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.