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 aadeshrao123
ultimate_mcp_server
by Dicklesworthstone
Stars★ 28★ 149
30d uses
Score4485
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsBrowser AutomationFile System
LanguageC++Python
Last committhis month2 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 doctor

Option 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

  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.