Enable AI assistant clients like Cursor, Windsurf and Claude Desktop to control Unreal Engine through natural language using the Model Context Protocol (MCP).
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"unreal-mcp": {
"command": "npx",
"args": [
"-y",
"chongdashu/unreal-mcp"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add unreal-mcp npx -y chongdashu/unreal-mcp
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"unreal-mcp": {
"command": "npx",
"args": [
"-y",
"chongdashu/unreal-mcp"
]
}
}
}
📋 Copy