unity-mcp-server vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
unity-mcp-server by AnkleBreaker-Studio | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 182 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 51 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 1 mo ago | this month |
unity-mcp-server · Summary
Comprehensive MCP server with 288 tools for AI-assisted Unity development through Editor and Hub.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
unity-mcp-server · Use cases
- Create scenes, manipulate GameObjects, and manage components through AI commands
- Automate Unity builds, performance profiling, and testing processes
- Develop games entirely through AI assistance from scene setup to shader creation
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-server · Install
Installation
1. Install the Unity Plugin
In Unity: **Window > Package Manager > + > Add package from git URL:**
https://github.com/AnkleBreaker-Studio/unity-mcp-plugin.git2. Install this MCP Server
git clone https://github.com/AnkleBreaker-Studio/unity-mcp-server.git
cd unity-mcp-server
npm install3. Add to Claude Desktop
Open Claude Desktop > Settings > Developer > Edit Config, and add:
{
"mcpServers": {
"unity": {
"command": "node",
"args": ["C:/path/to/unity-mcp-server/src/index.js"],
"env": {
"UNITY_HUB_PATH": "C:\\Program Files\\Unity Hub\\Unity Hub.exe",
"UNITY_BRIDGE_PORT": "7890"
}
}
}
}Restart Claude Desktop. Done!
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"]
}
}
}