advanced-unity-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
advanced-unity-mcp by codemaestroai | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 91 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | — | TypeScript |
| Last commit | 2 mo ago | this month |
advanced-unity-mcp · Summary
An MCP server that enables AI assistants to control Unity Editor through natural language commands.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
advanced-unity-mcp · Use cases
- Automating Unity scene setup through AI commands
- Streamlining game development with AI-powered asset creation
- Enabling non-programmers to work with Unity via natural language
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
advanced-unity-mcp · Install
Installation
**1. Install the Package**
Unity Package Manager → Add package from git URL for the version of Unity you are using
For **Unity 2020-2022**
https://github.com/codemaestroai/advanced-unity-mcp.git?path=Unity2020_2022For **Unity 6+**
https://github.com/codemaestroai/advanced-unity-mcp.git?path=Unity6**2. Connect Your AI**
- Go to
Code Maestro > MCP Dashboardin Unity. - **For Code Maestro Desktop App:** Select the "Code Maestro Desktop App" connection mode.
- **For other clients (VS Code, Cursor, etc.):** Select the "Other Clients" connection mode, then click **Configure** next to your preferred client.
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