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 CoplayDev | |
|---|---|---|
| Stars | ★ 4,068 | ★ 9,661 |
| 30d uses | 10,239 | — |
| Score | 84 | 61 |
| 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 connects AI assistants to Unity Editor via Model Context Protocol, enabling direct management of assets, scenes, scripts and automated workflows.
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
- AI-driven game development in Unity using natural language commands
- Automating repetitive Unity workflows through AI assistants
- Real-time debugging and optimization of Unity projects using AI tools
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
Prerequisites
- Unity 2021.3 LTS+
- Python 3.10+ and uv
- An MCP Client (Claude Desktop, Cursor, VS Code Copilot, etc.)
1. Install the Unity Package
In Unity: Window > Package Manager > + > Add package from git URL...
https://github.com/CoplayDev/unity-mcp.git?path=/MCPForUnity#main2. Start the Server & Connect
- In Unity: Window > MCP for Unity
- Click Start Server (launches HTTP server on localhost:8080)
- Select your MCP Client and click Configure
- Look for 🟢 "Connected ✓"
Claude Desktop Configuration
{
"mcpServers": {
"unityMCP": {
"url": "http://localhost:8080/mcp"
}
}
}