unreal-mcp vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
unreal-mcp by chongdashu | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 1,879 | ★ 149 |
| 30d uses | — | — |
| Score | 45 | 85 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsBrowser AutomationFile System |
| Language | C++ | Python |
| Last commit | 13 mo ago | 2 mo ago |
unreal-mcp · Summary
MCP server enabling AI assistants to control Unreal Engine through natural language commands.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
unreal-mcp · Use cases
- Automate Unreal Engine scene creation and manipulation through AI assistants
- Develop and compile Blueprints using natural language commands
- Control Unreal Editor viewport and camera positioning via AI
- Streamline game development workflows by integrating AI with UE5
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
unreal-mcp · Install
Installation
- **Prerequisites**
- Unreal Engine 5.5+ - Python 3.12+ - MCP Client (Claude Desktop, Cursor, Windsurf)
- **Plugin Setup**
- Copy MCPGameProject/Plugins/UnrealMCP to your project's Plugins folder - Enable the plugin in Unreal Editor: Edit > Plugins > UnrealMCP - Generate and build Visual Studio project files
- **Python Server Setup**
- Set up Python environment - Navigate to Python folder - Install dependencies - Run unreal_mcp_server.py
- **Configure MCP Client**
Add to your client configuration:
{
"mcpServers": {
"unrealMCP": {
"command": "uv",
"args": [
"--directory",
"<path/to/the/folder/PYTHON>",
"run",
"unreal_mcp_server.py"
]
}
}
}Configuration locations:
- Claude Desktop:
~/.config/claude-desktop/mcp.json - Cursor:
.cursor/mcp.json - Windsurf:
~/.config/windsurf/mcp.json
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server