-
Notifications
You must be signed in to change notification settings - Fork 91
Troubleshooting
Chirag Panwar edited this page Feb 25, 2026
·
2 revisions
Common issues and solutions.
Check these:
- Is Unreal Editor running?
- Is MCP Automation Bridge plugin enabled? (Edit → Plugins → search "MCP")
- Is port 8091 blocked by firewall?
- Is
UE_PROJECT_PATHset correctly?
Solution: Close and reopen your project. This is normal UE behavior.
| AI Client | Location |
|---|---|
| Claude Desktop (Windows) | %APPDATA%/Claude/claude_desktop_config.json |
| Claude Desktop (Mac) | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Cursor | ~/.cursor/mcp.json |
| Windsurf | ~/.config/windsurf/mcp.json |
Add it to your MCP config:
{
"mcpServers": {
"unreal-engine": {
"command": "npx",
"args": ["unreal-engine-mcp-server"],
"env": {
"UE_PROJECT_PATH": "C:/Path/To/YourProject"
}
}
}
}Change the port:
"MCP_AUTOMATION_PORT": "8092"- Verify plugin is in
YourProject/Plugins/McpAutomationBridge/ - Delete
Intermediatefolder - Regenerate project files
- Restart Unreal Editor
The plugin uses NoPCHs to prevent memory issues. If still failing:
- Close other applications
- Increase Windows page file
- Build in Release configuration
- Check spelling (use exact tool names from Tools Reference)
- Update:
npx unreal-engine-mcp-server@latest
- Verify the action exists for that tool
- Ensure required plugin is enabled
Some tools need additional plugins:
| Tool | Enable This Plugin |
|---|---|
manage_sequence |
Level Sequence Editor |
animation_physics |
Control Rig |
manage_geometry |
GeometryScripting |
manage_behavior_tree |
Behavior Tree Editor |
manage_gas |
Gameplay Abilities |
Increase timeout:
"MCP_AUTOMATION_REQUEST_TIMEOUT_MS": "300000"- Use
/Game/prefix (not/Content/) - Verify asset exists in Content Browser
- Check path format:
/Game/Folder/AssetName
Enable debug logging to troubleshoot:
"LOG_LEVEL": "debug"| Resource | Link |
|---|---|
| GitHub Issues | https://github.com/ChiR24/Unreal_mcp/issues |
| Discussions | https://github.com/ChiR24/Unreal_mcp/discussions |
When reporting issues, include:
- Unreal Engine version
- MCP Server version
- Error message
- Steps to reproduce
Unreal MCP