Unreal-MCP vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
Unreal-MCP by aadeshrao123 | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 28 | ★ 149 |
| 30d uses | — | — |
| Score | 44 | 85 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsBrowser AutomationFile System |
| Language | C++ | Python |
| Last commit | this month | 2 mo ago |
Unreal-MCP · Summary
MCP server providing 280+ commands to control Unreal Engine 5 from AI coding assistants.
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
- Creating and managing game assets from AI coding environments
- Automating Unreal Engine workflow through AI assistants
- Integrating Unreal development with AI-powered code completion
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
Option A: CLI (Recommended for Claude Code)
# Install CLI tool
npm install -g unrealcli
# Setup in UE5 project
cd YourProject/
ue-cli init
ue-cli doctorOption B: MCP Server (For Cursor, Windsurf, etc.)
# Clone plugin to project
git clone https://github.com/aadeshrao123/Unreal-MCP.git Plugins/UnrealMCP
# Install Python server
pip install unrealmcp
# Add to Claude Desktop config (example)
{
"mcpServers": {
"unreal": {
"command": "unrealmcp"
}
}
}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