unity-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
unity-mcp-server by AnkleBreaker-Studio | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 182 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 1 mo ago | this month |
unity-mcp-server · Summary
Comprehensive MCP server with 288 tools for AI-assisted Unity development through Editor and Hub.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
unity-mcp-server · Use cases
- Create scenes, manipulate GameObjects, and manage components through AI commands
- Automate Unity builds, performance profiling, and testing processes
- Develop games entirely through AI assistance from scene setup to shader creation
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
unity-mcp-server · Install
Installation
1. Install the Unity Plugin
In Unity: **Window > Package Manager > + > Add package from git URL:**
https://github.com/AnkleBreaker-Studio/unity-mcp-plugin.git2. Install this MCP Server
git clone https://github.com/AnkleBreaker-Studio/unity-mcp-server.git
cd unity-mcp-server
npm install3. Add to Claude Desktop
Open Claude Desktop > Settings > Developer > Edit Config, and add:
{
"mcpServers": {
"unity": {
"command": "node",
"args": ["C:/path/to/unity-mcp-server/src/index.js"],
"env": {
"UNITY_HUB_PATH": "C:\\Program Files\\Unity Hub\\Unity Hub.exe",
"UNITY_BRIDGE_PORT": "7890"
}
}
}
}Restart Claude Desktop. Done!
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything