mcp-server-chart vs mcp-unity
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | mcp-unity by CoderGamester | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1,699 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 56 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 开发者工具AI / LLM 工具game-development |
| 实现语言 | TypeScript | C# |
| 最近提交 | 本月 | 本月 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
mcp-unity · 概述
Unity Editor 的 MCP 服务器,让 AI 助手可以操作场景、GameObject 和其他 Unity 资源。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
mcp-unity · 使用场景
- Unity 开发人员使用 AI 助手自动化场景创建和对象操作
- 游戏工作室实现游戏开发的 AI 工作流
- 使用 AI 辅助教授 Unity 开发的教育环境
mcp-server-chart · 安装
安装
全局安装:
npm install -g @antv/mcp-server-chart对于桌面应用(如 Claude Desktop、VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}Windows 系统:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}mcp-unity · 安装
安装
- 从 [nodejs.org](https://nodejs.org/en/download/) 安装 Node.js 18 或更高版本
- 通过 npm 安装 Unity MCP 服务器:
``bash npm install -g @codergamester/mcp-unity ``
- 配置您的 IDE(Cursor、Windsurf 等)以使用 MCP 服务器
Claude Desktop 配置
添加到 Claude 的 config.json:
{
"mcpServers": {
"unity": {
"command": "npx",
"args": ["@codergamester/mcp-unity"],
"env": {
"UNITY_PROJECT_PATH": "/path/to/your/unity/project"
}
}
}
}