mcp-registry/godot-mcp

    ==================
      
       /// MCP ///
      /// GOD ///
        
    ==================
        
    [server:online]
    [protocol:ready]

godot-mcp

by Coding-Solo

MCP server for interfacing with Godot – lets AI assistants launch/run Godot projects, capture debug output, manipulate scenes, etc.

669
75
Specialized

Installation

Prerequisites:
1. Install Node.js (v14+ recommended)
2. Install the Godot engine and note the absolute path to the Godot executable (e.g. /usr/bin/godot or C:\Godot\Godot.exe)
Quick install via npm (if the package is published):
npm install -g godot-mcp
OR manual install from source:
# clone the repo git clone https://github.com/Coding-Solo/godot-mcp.git cd godot-mcp # install JS dependencies npm install
Configuration:
Create a small JSON file called `mcp.config.json` (or set env-vars) with at least:
{ "godotPath": "/absolute/path/to/godot", // required "port": 4873 // optional, default 4873 }
Alternatively export an environment variable before launching:
export GODOT_EXECUTABLE=/absolute/path/to/godot
Running the server:
# if installed globally godot-mcp --config ./mcp.config.json # if running from source npm start -- --config ./mcp.config.json
The server will be reachable on http://localhost:<port> (default 4873).
Updating:
# global install npm update -g godot-mcp

Documentation

License: MIT License
Updated 7/30/2025

Table of Contents