unity-mcp vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
unity-mcp by CoplayDev | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 9,661 | ★ 149 |
| 30d uses | — | — |
| Score | 61 | 85 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsProductivity | AI / LLM ToolsBrowser AutomationFile System |
| Language | C# | Python |
| Last commit | this month | 2 mo ago |
unity-mcp · Summary
Unity MCP connects AI assistants to Unity Editor via Model Context Protocol, enabling direct management of assets, scenes, scripts and automated 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.
unity-mcp · Use cases
- AI-driven game development in Unity using natural language commands
- Automating repetitive Unity workflows through AI assistants
- Real-time debugging and optimization of Unity projects using AI tools
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-mcp · Install
Installation
Prerequisites
- Unity 2021.3 LTS+
- Python 3.10+ and uv
- An MCP Client (Claude Desktop, Cursor, VS Code Copilot, etc.)
1. Install the Unity Package
In Unity: Window > Package Manager > + > Add package from git URL...
https://github.com/CoplayDev/unity-mcp.git?path=/MCPForUnity#main2. Start the Server & Connect
- In Unity: Window > MCP for Unity
- Click Start Server (launches HTTP server on localhost:8080)
- Select your MCP Client and click Configure
- Look for 🟢 "Connected ✓"
Claude Desktop Configuration
{
"mcpServers": {
"unityMCP": {
"url": "http://localhost:8080/mcp"
}
}
}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_server