Run a native Unreal Engine 5 MCP server in-editor to control projects from Claude Code, VS Code, and other MCP clients without extra processes
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"uecortex": {
"command": "npx",
"args": [
"-y",
"putnamwarlike130/UECortex"
]
}
}
}
Run in terminal:
claude mcp add uecortex npx -y putnamwarlike130/UECortex
Add to .cursor/mcp.json:
{
"mcpServers": {
"uecortex": {
"command": "npx",
"args": [
"-y",
"putnamwarlike130/UECortex"
]
}
}
}