godot-mcp-omni
Codex-optimized MCP server for Godot 4.x with a compact set of high-signal tools for project, scene, script, editor, and API operations.
README
godot-mcp-omni
Codex-optimized MCP server for Godot 4.x. It is designed around a small number of high-signal manager tools rather than hundreds of narrow tools, while still exposing the full engine through dynamic Godot API dumps, headless GDScript operations, and an optional in-editor bridge.
Design goals
This edition is shaped for Codex-style agents that need a compact, reliable local control surface:
- Zero npm runtime dependencies: pure Node.js 20+ JSON-RPC/MCP stdio implementation.
- Small tool surface: 9 tools, each with clear action enums.
- Full-engine reach without schema bloat:
godot_docscan dump/search the current Godot binary's API, andgodot_editor.rpccan call editor-bridge capabilities dynamically. - Codex-safe writes: all filesystem writes are project-root constrained; snapshots/backups are created before edits, and generated bridge tokens are ignored by git.
- Hybrid control: headless Godot operations for CI/sandbox use; editor bridge for live selection, scene tree, inspector, logs, and viewport-related work.
- Structured results: every tool returns
contentplusstructuredContent, so models can parse outcomes reliably.
Install
cd godot-mcp-omni
node src/index.js --doctor
Add to ~/.codex/config.toml:
[mcp_servers.godot]
command = "node"
args = ["/absolute/path/to/godot-mcp-omni/src/index.js"]
startup_timeout_sec = 20
tool_timeout_sec = 120
enabled = true
[mcp_servers.godot.env]
GODOT_PATH = "/absolute/path/to/Godot"
GODOT_MCP_SEARCH_DIRS = "/optional/folder/with/godot"
GODOT_MCP_HOST = "127.0.0.1"
GODOT_MCP_PORT = "8765"
GODOT_MCP_ALLOW_WRITE = "true"
GODOT_MCP_ALLOW_DANGEROUS = "false"
First Codex workflow
- Ask Codex:
Use godot_meta doctor for my project at /path/to/MyGame. - Ask Codex:
Run godot_editor sync_addon and tell me how to enable the plugin. - Open Godot, enable Godot Codex Bridge, then ask Codex:
Connect to the Godot editor and read the scene tree. - For headless work:
Create a Player.tscn with CharacterBody2D root and add a CollisionShape2D child.
godot_editor sync_addon creates res://.godot_mcp_token when no GODOT_MCP_TOKEN is configured. The package and synced projects ignore that token file by default.
For newest Godot releases, prefer setting GODOT_PATH to the exact editor binary. If you keep multiple portable builds, set GODOT_MCP_SEARCH_DIRS to the folder that contains them; the server probes matching Godot binaries and chooses the newest detected version.
To install the latest official Godot 4.x stable editor for local validation or CI:
npm run godot:install-latest -- --out ./tmp/godot
The GitHub workflow in .github/workflows/latest-godot.yml runs on pushes, pull requests, and a daily schedule. It fetches the latest official Godot 4.x stable build dynamically and runs the live MCP test suite against it, so new stable releases are checked without editing repository code.
Tool surface
godot_meta: server info, doctor, tool help, Codex operating profile.godot_project: project discovery, inspection, safe file read/write/edit/snapshot/diff.godot_script: script listing, read/write, basic syntax checks.godot_scene: create/read/validate scene files and run headless node operations.godot_asset: resource scanning, import, UID lookup, folders.godot_runtime: Godot version, run/stop/smoke/export/log capture.godot_editor: sync/connect to editor bridge, inspect tree/selection, raw RPC.godot_docs: dump/search the current Godot API.godot_batch: run multi-step tool workflows with stop-on-error semantics.
See docs/ARCHITECTURE.md, docs/TOOLS.md, docs/SECURITY.md, and docs/MCP_ARCHITECTURE_REVIEW.md.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.