Skip to content

Configuration

ChiR24 edited this page Feb 4, 2026 · 2 revisions

Configuration

Environment variables and settings for Unreal MCP.


Required

Variable Description Example
UE_PROJECT_PATH Path to Unreal project C:/Projects/MyGame

Optional

Variable Default Description
MCP_AUTOMATION_HOST 127.0.0.1 WebSocket host
MCP_AUTOMATION_PORT 8091 WebSocket port
LOG_LEVEL info Logging level
WASM_ENABLED true Enable WASM acceleration

Example Configuration

# Windows
set UE_PROJECT_PATH=C:\Projects\MyGame
set LOG_LEVEL=debug

# Linux/Mac
export UE_PROJECT_PATH=/home/user/projects/MyGame
export LOG_LEVEL=debug

MCP Client Config

Claude Desktop

{
  "mcpServers": {
    "unreal-engine": {
      "command": "npx",
      "args": ["unreal-engine-mcp-server"],
      "env": {
        "UE_PROJECT_PATH": "C:/Projects/MyGame",
        "LOG_LEVEL": "info"
      }
    }
  }
}

See Also

Navigation

Getting Started

Reference

Help


Unreal MCP

Clone this wiki locally