Godot Mcp Runtime
@Erodenn
Godot Mcp Runtime について
A lightweight MCP server that gives AI assistants direct access to a running Godot 4.x game. Not just file editing, not just scene manipulation. Actual runtime control: input simulation, screenshots, UI discovery, and live GDScript execution while the game is running.
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"godot": {
"command": "npx",
"args": [
"-y",
"godot-mcp-runtime"
],
"env": {
"GODOT_PATH": "<path-to-godot-executable>"
}
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is Godot MCP Runtime?
A lightweight MCP server that gives AI assistants direct access to a running Godot 4.x game. It injects a UDP bridge as an autoload, enabling input simulation, screenshots, UI discovery, and live GDScript execution — no Godot addon required. Designed for AI-driven game development workflows where the agent can check its own work.
How to use Godot MCP Runtime?
Requires Node.js v18+ and Godot 4.x. Install via npx -y godot-mcp-runtime or npm install -g godot-mcp-runtime. Add the command to your MCP client config (Claude Code, Claude Desktop, Cursor) with the GODOT_PATH environment variable (or omit if Godot is on your PATH). Verify by asking the AI to call get_project_info.
Key features of Godot MCP Runtime
- Runtime bridge injects a UDP autoload on port 9900
- Screenshot capture, batched input simulation, and UI discovery
- Live GDScript execution against the active scene tree
- Headless scene editing: create scenes, add nodes, attach scripts
- Background mode hides the Godot window and blocks physical input
- Manual attach mode for CI or externally launched projects
Use cases of Godot MCP Runtime
- AI verifying its own changes by running the game and checking output
- Automated headless testing of scenes and UI interactions
- Live debugging and inspection of a running Godot project
- Batch scene operations (add nodes, set properties, save) without opening the editor
FAQ from Godot MCP Runtime
What distinguishes this from other Godot MCP servers?
No addon installation is required — the server injects a lightweight UDP bridge at runtime and cleans it up automatically. It is analogous to Playwright MCP, but for Godot games.
What are the runtime dependencies?
Node.js v18+ and a Godot 4.x executable. No Godot addon, no project modifications, no additional dependencies.
Where does runtime data live, and how is security handled?
The UDP bridge listens on localhost port 9900 only. The bridge is injected as a temporary autoload and is removed when stop_project or detach_project is called.
What are the known limitations?
get_debug_output is unavailable in manual attach mode because stdout/stderr only flow through processes the MCP server started itself. The server is not a playtesting replacement and cannot assess game feel or fun.
What transport and authentication does the server use?
The server uses MCP stdio transport. No authentication mechanism is mentioned in the README.
「その他」の他のコンテンツ
🪟 Windows-MCP
CursorTouchMCP Server for Computer Use in Windows
Codelf
unbugA search tool helps dev to solve the naming things problem.
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
MCP Toolbox for Databases
googleapisMCP Toolbox for Databases is an open source MCP server for databases.
MCP Registry
modelcontextprotocolA community driven registry service for Model Context Protocol (MCP) servers.
コメント