Installation
Prerequisites
Section titled “Prerequisites”Before installing GodotIQ, ensure you have:
- Python 3.10+ — python.org/downloads
- Godot 4.2+ — godotengine.org
- An MCP-compatible AI client — Claude Code, Cursor, Windsurf, VSCode Copilot, or any MCP client
Install GodotIQ
Section titled “Install GodotIQ”-
Install via pip:
Terminal window pip install godotiqThis installs the Community edition with 15 free tools — spatial intelligence, code understanding, flow tracing, project memory, asset management, and animation analysis. No Godot addon required.
-
Configure your MCP client (see below).
-
Verify the connection by asking your AI to use the
godotiq_pingtool, or simply ask: “Ping GodotIQ” — it should confirm the server is running.
Configure Your MCP Client
Section titled “Configure Your MCP Client”Run this command in your terminal:
claude mcp add godotiq -- godotiq --project /path/to/your/godot/projectClaude Code manages MCP servers via its CLI. Replace /path/to/your/godot/project with the absolute path to your Godot project root (the directory containing project.godot).
Create .cursor/mcp.json in your project root:
{ "mcpServers": { "godotiq": { "command": "godotiq", "args": ["--project", "/path/to/your/godot/project"] } }}Restart Cursor after saving. The MCP server will start automatically when Cursor opens the project.
Add GodotIQ to your Windsurf MCP configuration (~/.codeium/windsurf/mcp_config.json):
{ "mcpServers": { "godotiq": { "command": "godotiq", "args": ["--project", "/path/to/your/godot/project"] } }}Restart Windsurf to activate.
Add to your VSCode settings (.vscode/settings.json):
{ "mcp": { "servers": { "godotiq": { "command": "godotiq", "args": ["--project", "/path/to/your/godot/project"] } } }}VSCode Copilot will detect the MCP server on next activation.