mcp-server-chart vs Unity-MCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Unity-MCP by IvanMurzak | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2,767 |
| 30d uses | 10,239 | — |
| Score | 84 | 57 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | C# |
| 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.
Unity-MCP · Summary
Unity-MCP enables AI agents to work directly in Unity Editor and runtime through MCP protocol.
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 · Use cases
- Automating Unity project development tasks with AI agents
- Creating dynamic NPC behavior in games using LLMs at runtime
- Debugging Unity projects with AI assistance
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"]
}
}
}Unity-MCP · Install
Installation
Unity Package
- [Download the Unity package](https://github.com/IvanMurzak/Unity-MCP/releases/latest/download/AI-Game-Dev-Installer.unitypackage)
- Import it into your Unity project
OpenUPM
openupm add com.ivanmurzak.unity.mcpCLI
# Install CLI
npm install -g unity-mcp-cli
# Install plugin in Unity project
unity-mcp-cli install-plugin ./MyUnityProject
# Setup AI skills
unity-mcp-cli setup-skills claude-code ./MyUnityProjectClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"unity-mcp": {
"command": "npx",
"args": ["unity-mcp-server"],
"env": {}
}
}
}