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 ChiR24
ultimate_mcp_server
by Dicklesworthstone
Stars★ 622★ 149
30d uses
Score5385
Official
Categories
Developer ToolsAI / LLM ToolsMedia
AI / LLM ToolsBrowser AutomationFile System
LanguageC++Python
Last committhis month2 mo ago

Unreal_mcp · Summary

MCP server enabling AI assistants to control Unreal Engine through native C++ Automation Bridge plugin.

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 game development workflows by scripting asset creation and scene configuration
  • Create AI-powered level design assistants that can generate and modify game environments
  • Build testing automation frameworks for validating game functionality across different scenarios

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.0-5.8
  • Node.js 18+ (for TypeScript bridge option)

Native MCP Transport (Recommended)

  1. Install the MCP Automation Bridge plugin in your Unreal project
  2. Enable "Native MCP" in Project Settings > Plugins > MCP Automation Bridge
  3. Configure your MCP client to connect to http://localhost:3000/mcp

Claude Desktop Configuration

{
  "mcpServers": {
    "unreal-engine": {
      "type": "url",
      "url": "http://localhost:3000/mcp"
    }
  }
}

TypeScript Bridge (Alternative)

  1. Install the server: npx unreal-engine-mcp-server
  2. Configure MCP client to run the CLI with Node.js

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.