
Godot MCP
by bradypp
MCP server that lets AI assistants launch, run, and manage Godot game engine projects directly through natural language commands.
What it does
Godot MCP bridges AI assistants and the Godot game engine via the Model Context Protocol. It enables AI tools like Claude, Cursor, and Cline to launch the Godot editor, run projects with debug output capture, manage scenes and nodes, and inspect project metadata — all through conversational commands. This creates a tight feedback loop where AI can see actual Godot output and errors, leading to more accurate code generation and debugging assistance.
Tools
get_godot_version— Retrieve installed Godot version infolaunch_editor— Open the Godot editor for a specific projectrun_project— Execute a project in debug mode with output capturestop_project— Stop a currently running Godot projectget_debug_output— Retrieve console output and error messageslist_projects— Find Godot projects in a directoryget_project_info— Get project metadata and structurecreate_scene— Create a new scene with a specified root node typeadd_node— Add a node to an existing scene with custom propertiesedit_node— Modify node properties (position, scale, textures, etc.)remove_node— Remove a node from a sceneload_sprite— Load a texture into a Sprite2D nodeexport_mesh_library— Convert a 3D scene to a MeshLibrary resourcesave_scene— Save a scene, optionally as a new variantget_uid— Get the UID for a file (Godot 4.4+)update_project_uids— Update UID references across a project
Installation
Add to your claude_desktop_config.json:
{
"mcpServers": {
"godot": {
"command": "node",
"args": ["/absolute/path/to/godot-mcp/build/index.js"],
"env": {
"DEBUG": "false",
"READ_ONLY": "false",
"GODOT_PATH": "/path/to/godot"
}
}
}
}
First build from source:
git clone https://github.com/bradypp/godot-mcp.git
cd godot-mcp && npm install && npm run build
Or install via npm:
npx godot-mcp
Supported hosts
Claude Desktop, Cursor, Cline, VS Code Copilot, and any MCP-enabled tool.
Quick install
npx godot-mcpInformation
- Pricing







