Unity-MCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Unity-MCP by IvanMurzak | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2,767 | ★ 85,748 |
| 30d uses | — | — |
| Score | 57 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | C# | TypeScript |
| Last commit | this month | this month |
Unity-MCP · Summary
Unity-MCP enables AI agents to work directly in Unity Editor and runtime through MCP protocol.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Unity-MCP · Use cases
- Automating Unity project development tasks with AI agents
- Creating dynamic NPC behavior in games using LLMs at runtime
- Debugging Unity projects with AI assistance
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 · Install
Installation
Unity Package
- [Download the Unity package](https://github.com/IvanMurzak/Unity-MCP/releases/latest/download/AI-Game-Dev-Installer.unitypackage)
- Import it into your Unity project
OpenUPM
openupm add com.ivanmurzak.unity.mcpCLI
# Install CLI
npm install -g unity-mcp-cli
# Install plugin in Unity project
unity-mcp-cli install-plugin ./MyUnityProject
# Setup AI skills
unity-mcp-cli setup-skills claude-code ./MyUnityProjectClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"unity-mcp": {
"command": "npx",
"args": ["unity-mcp-server"],
"env": {}
}
}
}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