==================
/// 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
SpecializedInstallation
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-mcpOR manual install from source:
# clone the repo
git clone https://github.com/Coding-Solo/godot-mcp.git
cd godot-mcp
# install JS dependencies
npm installConfiguration:
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/godotRunning the server:
# if installed globally
godot-mcp --config ./mcp.config.json
# if running from source
npm start -- --config ./mcp.config.jsonThe server will be reachable on http://localhost:<port> (default 4873).
Updating:
# global install
npm update -g godot-mcpDocumentation
License: MIT License
Updated 7/30/2025