gdai-mcp-plugin-godot vs everything
Side-by-side comparison to help you pick between these two MCP servers.
gdai-mcp-plugin-godot by 3ddelano | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 85 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | GDScript | TypeScript |
| Last commit | 2 mo ago | this month |
gdai-mcp-plugin-godot · Summary
GDAI MCP enables AI assistants to control Godot Engine, automating scene creation, debugging, and game development workflows.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
gdai-mcp-plugin-godot · Use cases
- Automated game development where AI creates complete game scenes and scripts from simple prompts
- Debugging assistance where AI analyzes script errors and provides fixes directly in the Godot environment
- Rapid prototyping where AI builds game elements based on design descriptions
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
gdai-mcp-plugin-godot · Install
Installation Steps
- **Install in Godot Project**
- Download the plugin from [gdaimcp.com](https://gdaimcp.com) - Add the plugin to your Godot project's addons/ folder - Enable the plugin in Godot's Project Settings
- **Configure in MCP Client**
- Add the following to your MCP client configuration: ``json { "mcpServers": { "gdai-godot": { "command": "godot", "args": ["--headless", "--script", "/path/to/gdaimcp_server.gd"] } } } ``
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything