everything vs godot-mcp-pro
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | godot-mcp-pro by youichi-uda | |
|---|---|---|
| Stars | ★ 85,748 | ★ 340 |
| 30天用量 | — | — |
| 综合分 | 77 | 52 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | GDScript |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
godot-mcp-pro · 概述
高级MCP服务器,提供172个工具,支持AI驱动的Godot 4游戏开发,具有实时编辑器集成功能。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
godot-mcp-pro · 使用场景
- AI辅助的Godot游戏开发,直接控制编辑器
- 通过AI代理自动化场景创建和节点操作
- 实时Godot项目的运行时分析和调试
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-everythinggodot-mcp-pro · 安装
安装
- 安装Godot插件:
- 将addons/godot_mcp/文件夹复制到Godot项目的addons/目录中 - 启用插件:**Project → Project Settings → Plugins → Godot MCP Pro → Enable**
- 安装MCP服务器(需要付费包):
``bash cd server npm install npm run build ``
- 在
.mcp.json中配置Claude Code:
``json { "mcpServers": { "godot-mcp-pro": { "command": "node", "args": ["/path/to/server/build/index.js"] } } } ``