MCP Catalogs
Home

unity-api-mcp vs ultimate_mcp_server

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

unity-api-mcp
by Codeturion
ultimate_mcp_server
by Dicklesworthstone
Stars★ 56★ 149
30d uses
Score4885
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
AI / LLM ToolsBrowser AutomationFile System
LanguagePythonPython
Last commit3 mo ago2 mo ago

unity-api-mcp · Summary

Unity API MCP server providing instant, accurate Unity documentation lookup for AI agents.

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.

unity-api-mcp · Use cases

  • AI-assisted Unity development with accurate API documentation
  • Preventing hallucinated Unity API signatures in AI-generated code
  • Efficient Unity API lookup during complex multi-step research 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

unity-api-mcp · Install

Add to your MCP config (.mcp.json, mcp.json, or your tool's MCP settings), setting UNITY_VERSION to match your project:

{
  "mcpServers": {
    "unity-api": {
      "command": "uvx",
      "args": ["unity-api-mcp"],
      "env": {
        "UNITY_VERSION": "2022"
      }
    }
  }
}

Valid values: "2022", "2023", or "6".

On first run, the server downloads the correct database (~18-24 MB) to ~/.unity-api-mcp/.

Alternatively, you can install with pip: pip install unity-api-mcp and modify the configuration to use command": "unity-api-mcp" instead of uvx.

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.