loading…
Search for a command to run...
loading…
Enables AI assistants to interact with Unreal Editor 5 through the Python remote execution protocol. It allows for managing the editor lifecycle, configuring pr
Enables AI assistants to interact with Unreal Editor 5 through the Python remote execution protocol. It allows for managing the editor lifecycle, configuring project settings, and executing Python scripts directly within the Unreal Engine environment.
MCP server for Unreal Editor interaction.
UE-MCP is a FastMCP-based MCP server that enables AI assistants to interact with Unreal Editor through the Python remote execution protocol.
pip install -e .
Run the server from a UE5 project directory:
cd /path/to/your/ue5/project
ue-mcp
Or use with FastMCP:
fastmcp run ue_mcp.server:mcp
editor.launch(additional_paths, wait, wait_timeout) - Launch Unreal Editor (synchronous by default)editor.status() - Get editor statuseditor.stop() - Stop the editoreditor.execute(code) - Execute Python code in the editoreditor.configure() - Check/fix project configurationproject.build(target, configuration, platform, clean, wait, verbose) - Build the UE5 project using UnrealBuildToolAdd to your .claude/settings.json:
{
"mcpServers": {
"ue-mcp": {
"command": "ue-mcp"
}
}
}
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"ue-mcp": {
"command": "npx",
"args": []
}
}
}