everything vs godot-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | godot-mcp by tugcantopaloglu | |
|---|---|---|
| Stars | ★ 85,748 | ★ 189 |
| 30天用量 | — | — |
| 综合分 | 77 | 48 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | JavaScript |
| 最近提交 | 本月 | 2 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
godot-mcp · 概述
Godot MCP 服务器提供 149 个工具,实现 AI 驱动的游戏开发中对引擎的全面控制。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
godot-mcp · 使用场景
- 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 · 安装
安装
- 安装 MCP 服务器:
npm install godot-mcp- 添加到 Claude Desktop 配置:
{
"mcpServers": {
"godot": {
"command": "node",
"args": ["/path/to/godot-mcp/dist/index.js"],
"env": {
"GODOT_PROJECT_PATH": "/path/to/your/godot/project"
}
}
}
}- 重启 Claude Desktop 以加载服务器。