Skip to content

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.

Running godotiq install-addon automatically creates .github/copilot-instructions.md with development rules for this client. No manual configuration needed.

  1. Install GodotIQ:

    Terminal window
    pip install godotiq
  2. Add to VS Code settings. Toggle Community or Pro and copy into .vscode/settings.json:

    .vscode/settings.json json
    {
      "mcp.servers": {
        "godotiq": {
          "command": "uvx",
          "args": ["godotiq"],
          "env": {
            "GODOTIQ_PROJECT_ROOT": "<REPLACE_WITH_YOUR_GODOT_PROJECT_PATH>"
          }
        }
      }
    }

    macOS/Linux: pwd · Windows PowerShell: (Get-Location).Path

    Omit GODOTIQ_LICENSE_KEY to use Community. Add your license key to unlock the 14 Pro intelligence tools.

    Swap in your project path (placeholder: <REPLACE_WITH_YOUR_GODOT_PROJECT_PATH>). uvx auto-installs godotiq on first use.

  3. Reload VS Code. Copilot will detect the MCP server automatically.

  4. Verify: Ask Copilot: “Ping GodotIQ”. It should confirm the connection.

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.

Install the Godot Tools extension alongside GodotIQ for the best experience: syntax highlighting, autocompletion, and debugging combined with AI-powered analysis.

VS Code may ask you to trust the workspace before MCP servers can run. Accept the trust prompt for your Godot project directory.

Toggle Pro in the snippet above and paste your license key in place of GODOTIQ-XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX. Save .vscode/settings.json and reload the window.

If activation doesn’t take, see Manage or Troubleshooting.

The addon communicates via WebSocket on port 6007 by default. If that conflicts, update the addon_port in your .godotiq.json and the Godot addon settings to match.

  • 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”)
  • Check the Output panel (View → Output → select “MCP” from dropdown) for error messages
  • Verify godotiq is installed: pip show godotiq
  • Ensure the project path exists and contains project.godot
  1. Toggle Pro in the snippet above and paste your license key.
  2. Save .vscode/settings.json and reload the window.
  3. Run godotiq auth status — expected: license: pro (active).
  4. If activation fails, visit Manage or Troubleshooting. Or email [email protected].