MCP Catalogs
Home

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
Score4585
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsBrowser AutomationFile System
LanguageC++Python
Last commit13 mo ago2 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

  1. **Prerequisites**

- Unreal Engine 5.5+ - Python 3.12+ - MCP Client (Claude Desktop, Cursor, Windsurf)

  1. **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

  1. **Python Server Setup**

- Set up Python environment - Navigate to Python folder - Install dependencies - Run unreal_mcp_server.py

  1. **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

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.