glade-mcp-unity vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
glade-mcp-unity by Glade-tool | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 132 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | C# | TypeScript |
| 最近提交 | 本月 | 本月 |
glade-mcp-unity · 概述
Unity MCP 服务器,提供 235+ 工具、脚本搜索和资源管道。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
glade-mcp-unity · 使用场景
- Unity 开发人员在 IDE 中直接获取 AI 助手
- Unity 项目中的游戏设计文档实现
- 游戏原型的免费资源发现和集成
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
glade-mcp-unity · 安装
安装
1. 安装 Unity 包
在 Unity 中:**Window > Package Manager > + > Add package from git URL...**
https://github.com/Glade-tool/glade-mcp-unity.git?path=/unity-bridgeUnity 桥在 localhost:8765 自动启动。
2. 连接您的 AI 客户端
安装 [uv](https://docs.astral.sh/uv/getting-started/installation/) 并将 MCP 配置添加到您的 AI 客户端。
**Claude Desktop:**
编辑 ~/Library/Application Support/Claude/claude_desktop_config.json(Mac)或 %APPDATA%\Claude\claude_desktop_config.json(Windows):
{
"mcpServers": {
"gladekit-unity": {
"command": "uvx",
"args": ["gladekit-mcp"]
}
}
}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