unity-api-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
unity-api-mcp by Codeturion | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 56 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
unity-api-mcp · 概述
Unity API MCP服务器,为AI代理提供即时、准确的Unity文档查询。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
unity-api-mcp · 使用场景
- AI辅助Unity开发,提供准确的API文档
- 防止AI生成代码中出现幻觉的Unity API签名
- 在复杂的多步骤研究工作流中高效查询Unity API
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
unity-api-mcp · 安装
添加到您的MCP配置(.mcp.json、mcp.json或您工具的MCP设置),设置UNITY_VERSION以匹配您的项目:
{
"mcpServers": {
"unity-api": {
"command": "uvx",
"args": ["unity-api-mcp"],
"env": {
"UNITY_VERSION": "2022"
}
}
}
}有效值:"2022"、"2023"或"6"。
首次运行时,服务器将下载正确的数据库(约18-24 MB)到~/.unity-api-mcp/。
或者,您可以使用pip安装:pip install unity-api-mcp,并修改配置以使用command": "unity-api-mcp"代替uvx。
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything