VS Code Copilot
VS Code supports MCP servers through its settings, enabling GitHub Copilot to use GodotIQ tools for spatial analysis, code intelligence, and more.
-
Install GodotIQ:
Terminal window pip install godotiq -
Add to VS Code settings:
Add the following to your workspace settings (
.vscode/settings.json):.vscode/settings.json {"mcp": {"servers": {"godotiq": {"command": "godotiq","args": ["--project", "/path/to/your/godot/project"]}}}}Replace the path with your Godot project root. Alternatively, use
uvand setGODOTIQ_PROJECT_ROOT— see Installation for details. -
Reload VS Code — Copilot will detect the MCP server automatically.
-
Verify: Ask Copilot: “Ping GodotIQ” — it should confirm the connection.
Tips for VS Code
Section titled “Tips for VS Code”Copilot Chat
Section titled “Copilot Chat”Use Copilot Chat (Ctrl+Alt+I / Cmd+Alt+I on macOS) to interact with GodotIQ tools. Copilot will automatically discover and call the appropriate tools based on your questions.
GDScript Extension
Section titled “GDScript Extension”Install the Godot Tools extension alongside GodotIQ for the best experience — syntax highlighting, autocompletion, and debugging combined with AI-powered analysis.
Workspace Trust
Section titled “Workspace Trust”VS Code may ask you to trust the workspace before MCP servers can run. Accept the trust prompt for your Godot project directory.
Advanced Configuration
Section titled “Advanced Configuration”Custom Python Path
Section titled “Custom Python Path”If godotiq isn’t on your PATH:
{ "mcp": { "servers": { "godotiq": { "command": "/path/to/venv/bin/godotiq", "args": ["--project", "/path/to/your/godot/project"] } } }}Bridge Configuration
Section titled “Bridge Configuration”For Pro addon users:
{ "mcp": { "servers": { "godotiq": { "command": "godotiq", "args": [ "--project", "/path/to/your/godot/project", "--bridge-port", "6551" ] } } }}Troubleshooting
Section titled “Troubleshooting”Copilot doesn’t use GodotIQ tools
Section titled “Copilot doesn’t use GodotIQ tools”- Ensure GitHub Copilot extension is installed and active
- Check that MCP support is enabled in Copilot settings
- Verify the MCP server configuration in
.vscode/settings.json - Reload the window (Ctrl+Shift+P → “Reload Window”)
Server fails to start
Section titled “Server fails to start”- Check the Output panel (View → Output → select “MCP” from dropdown) for error messages
- Verify
godotiqis installed:pip show godotiq - Ensure the project path exists and contains
project.godot