ultimate_mcp_server vs UnrealClaude
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | UnrealClaude by Natfii | |
|---|---|---|
| Stars | ★ 149 | ★ 613 |
| 30d uses | — | — |
| Score | 85 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsAI / LLM ToolsProductivity |
| Language | Python | C++ |
| Last commit | 2 mo ago | this 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.
UnrealClaude · Summary
Claude Code CLI integration for Unreal Engine 5.7 with MCP server exposing 20+ tools for UE development.
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
UnrealClaude · Use cases
- AI-powered coding assistance directly in Unreal Engine editor with UE5.7 documentation context
- Automated Blueprint creation and modification through MCP tools
- Level management and asset manipulation using AI commands
- Script execution and compilation via AI with permission workflow
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverUnrealClaude · Install
Installation
Prerequisites
- Install Claude Code CLI:
npm install -g @anthropic-ai/claude-code - Authenticate:
claude auth login
Build from Source
- Clone repository with submodules:
git clone --recurse-submodules https://github.com/Natfii/UnrealClaude.git - Build plugin:
- Windows: Engine\Build\BatchFiles\RunUAT.bat BuildPlugin -Plugin="PATH\TO\UnrealClaude\UnrealClaude\UnrealClaude.uplugin" -Package="OUTPUT\PATH" -TargetPlatforms=Win64 - Linux: Engine/Build/BatchFiles/RunUAT.sh BuildPlugin -Plugin="/path/to/UnrealClaude/UnrealClaude/UnrealClaude.uplugin" -Package="/output/path" -TargetPlatforms=Linux - macOS: Engine/Build/BatchFiles/RunUAT.sh BuildPlugin -Plugin="/path/to/UnrealClaude/UnrealClaude/UnrealClaude.uplugin" -Package="/output/path" -TargetPlatforms=Mac
- Copy built plugin to project's
Pluginsdirectory - Install MCP dependencies:
cd <PluginPath>/UnrealClaude/Resources/mcp-bridge && npm install
Claude Desktop Integration
To connect Claude Desktop to UnrealClaude:
- Add to Claude Desktop config:
{
"mcpServers": {
"unreal": {
"command": "node",
"args": ["<PluginPath>/UnrealClaude/Resources/mcp-bridge/index.js"]
}
}
}- Restart Claude Desktop