MCP Catalogs
Home

ultimate_mcp_server vs ue5-mcp-bridge

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

ultimate_mcp_server
by Dicklesworthstone
ue5-mcp-bridge
by Natfii
Stars★ 149★ 45
30d uses
Score8547
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
Developer ToolsAI / LLM ToolsProductivity
LanguagePythonJavaScript
Last commit2 mo agothis month

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.

ue5-mcp-bridge · Summary

MCP server bridging AI assistants to Unreal Engine 5 editor, enabling direct manipulation of game development assets and workflows.

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

ue5-mcp-bridge · Use cases

  • Automating repetitive UE5 setup tasks like creating Blueprints and configuring input bindings
  • Directly manipulating game elements through natural language commands ('Spawn a point light at position 0,0,500')
  • Rapid prototyping by describing desired functionality instead of navigating complex menus
  • Querying UE5 API documentation context while working in the editor

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

ue5-mcp-bridge · Install

Installation

  1. Clone the repository:
git clone https://github.com/Natfii/unrealclaude-mcp-bridge.git
cd unrealclaude-mcp-bridgenpm install
  1. Configure your MCP client:

**Claude Desktop** (claude_desktop_config.json):

{
  "mcpServers": {
    "unreal": {
      "command": "node",
      "args": ["/path/to/unrealclaude-mcp-bridge/index.js"],
      "env": {
        "UNREAL_MCP_URL": "http://localhost:3000"
      }
    }
  }
}

**Claude Code** (~/.claude/settings.json):

{
  "mcpServers": {
    "unreal": {
      "command": "node",
      "args": ["/path/to/unrealclaude-mcp-bridge/index.js"],
      "env": {
        "UNREAL_MCP_URL": "http://localhost:3000"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.