unreal-editor-mcp
Provides tools for triggering Live Coding builds, inspecting parse errors, searching editor logs, and retrieving crash context for Unreal Engine AI development.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@unreal-editor-mcptrigger a live coding build and show errors"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
unreal-editor-mcp
Build diagnostics and editor log tools for Unreal Engine AI development via Model Context Protocol.
Gives AI assistants the ability to trigger Live Coding builds, inspect parsed compile errors, search/filter editor logs, and get crash context — the "feedback loop" for C++ iteration without leaving the AI workflow.
Why?
When iterating on C++ in UE, the build-test cycle is invisible to AI assistants. They can write code but can't compile it, see if it worked, or read the editor's output. This server closes that loop.
Complements (does not replace):
unreal-source-mcp — Engine-level source intelligence (full UE C++ and HLSL)
unreal-project-mcp — Project-level source intelligence (your C++ code)
unreal-blueprint-mcp — Blueprint graph reading (nodes, pins, connections, execution flow)
unreal-blueprint-reader — C++ editor plugin that serializes Blueprint graphs to JSON for AI tooling
unreal-material-mcp — Material graph intelligence, editing, and procedural creation (46 tools: expressions, parameters, instances, graph building, templates, C++ plugin)
unreal-config-mcp — Config/INI intelligence (resolve inheritance chains, search settings, diff from defaults, explain CVars)
unreal-animation-mcp — Animation data inspector and editor (sequences, montages, blend spaces, ABPs, skeletons, 62 tools)
unreal-niagara-mcp — Niagara VFX intelligence and editing (emitters, modules, HLSL generation, procedural creation, 70 tools)
unreal-api-mcp by Nico Bailon — API surface lookup (signatures, #include paths, deprecation warnings)
Together these servers give AI agents full-stack UE understanding: engine internals, API surface, your project code, build/runtime feedback, Blueprint graph data, config/INI intelligence, material graph inspection + editing, animation data inspection + editing, and Niagara VFX inspection + creation.
Related MCP server: UE5 MCP Server
Prerequisites
Python Remote Execution must be enabled in the editor: Edit > Project Settings > search "remote" > under Python Remote Execution, check "Enable Remote Execution?". This allows the server to discover and communicate with the running editor. Without it, log tools still work but build triggering will fail.
Quick Start
Install from GitHub
uvx --from git+https://github.com/tumourlove/unreal-editor-mcp.git unreal-editor-mcpClaude Code Configuration
Add to your project's .mcp.json:
{
"mcpServers": {
"unreal-editor": {
"command": "uvx",
"args": ["--from", "git+https://github.com/tumourlove/unreal-editor-mcp.git", "unreal-editor-mcp"],
"env": {
"UE_PROJECT_PATH": "D:/Unreal Projects/MyProject"
}
}
}
}Or run from local source during development:
{
"mcpServers": {
"unreal-editor": {
"command": "uv",
"args": ["run", "--directory", "C:/Projects/unreal-editor-mcp", "python", "-m", "unreal_editor_mcp"],
"env": {
"UE_PROJECT_PATH": "D:/Unreal Projects/MyProject"
}
}
}
}Tools
Build Tools (5)
Tool | Description |
| Trigger a Live Coding compile via the editor's Python bridge. Returns a build ID for tracking. |
| Check build state: building, succeeded, or failed. Shows error/warning counts. |
| Get parsed build errors with file, line, error code, and message. Filter by module or severity. |
| Overview of the latest build: error count, warning count, duration. |
| Regex search across raw build output from the latest build. |
Log Tools (6)
Tool | Description |
| Last N log lines, filterable by category (e.g. |
| Regex search across the current session's log buffer. |
| List all active log categories with their message counts. |
| Last Fatal log entries + crash report directory info from |
| Recent log output (last N seconds). |
| Error/warning breakdown per category, most active categories. |
Environment Variables
Variable | Required | Description |
| Yes | Path to the UE project root (containing the .uproject file) |
| No | TCP port for command connection (default: |
| No | UDP multicast group for editor discovery (default: |
| No | UDP multicast port (default: |
| No | Multicast bind address (default: |
How It Works
Editor Bridge — Discovers the running UE editor via UDP multicast (the same protocol as UE's built-in remote_execution.py). Opens a TCP command channel to execute Python in the editor. Used to trigger Live Coding compiles via LiveCoding.Compile console command.
Log Tailer — A background thread polls the project's Saved/Logs/{ProjectName}.log every 500ms. On startup, reads the last 1000 lines to pre-populate. Maintains a rolling buffer of 10,000 parsed log entries in memory. All log tools query this buffer.
Build Manager — When a build is triggered, monitors LogLiveCoding log entries to detect completion ("Live coding succeeded" / "Live coding failed"). Parses MSVC error format (file(line): error C1234: message) from build output. Keeps a rolling history of the last 5 builds.
No database — all state lives in memory. The server is stateless across restarts.
Development
# Clone and install
git clone https://github.com/tumourlove/unreal-editor-mcp.git
cd unreal-editor-mcp
uv sync
# Run tests (57 tests)
uv run pytest -v
# Run locally
UE_PROJECT_PATH="/path/to/project" uv run python -m unreal_editor_mcpAdding to Your Project's CLAUDE.md
If your UE project has a CLAUDE.md (used by Claude Code for project context), add a note so the AI knows build and log tools are available:
## MCP Servers
- **unreal-editor-mcp** is configured. Use `trigger_build` to compile via Live Coding,
`get_build_errors` to inspect failures, and `get_recent_logs` / `search_logs` to
check editor output. Always check build results after modifying C++ code.Requirements
Python 3.11+
uv (recommended) or pip
Unreal Engine 5.x with Python plugin and Remote Execution enabled
License
MIT
This server cannot be installed
Maintenance
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tumourlove/DEPRECATED-unreal-editor-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server