MCP Catalogs
Home

ue-mcp vs ultimate_mcp_server

Side-by-side comparison to help you pick between these two MCP servers.

ue-mcp
by db-lyon
ultimate_mcp_server
by Dicklesworthstone
Stars★ 96★ 149
30d uses
Score4985
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsBrowser AutomationFile System
LanguageC++Python
Last committhis month2 mo ago

ue-mcp · Summary

Complete Unreal Engine development toolkit with 450+ MCP tools for AI-powered game development workflows.

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.

ue-mcp · Use cases

  • Automating repetitive Unreal Engine development tasks through natural language commands
  • Generating and modifying game assets, blueprints, and materials using AI assistance
  • Creating complex game development workflows with the YAML flow engine for multi-step processes

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

ue-mcp · Install

Quick Start

npx ue-mcp init

The interactive setup will:

  1. Find your .uproject (auto-detects in current directory)
  2. Let you choose which tool categories to enable
  3. Deploy the C++ bridge plugin to your project
  4. Enable required UE plugins (Niagara, PCG, GAS, etc.)
  5. Detect and configure your MCP client (Claude Code, Claude Desktop, Cursor)

Restart the editor once after setup to load the bridge plugin. To update later: npx ue-mcp update

Manual Configuration

Add to your MCP client config:

{
  "mcpServers": {
    "ue-mcp": {
      "command": "npx",
      "args": ["ue-mcp", "C:/path/to/MyGame.uproject"]
    }
  }
}

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.