everything vs unity-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | unity-mcp by wondeks | |
|---|---|---|
| Stars | ★ 85,748 | ★ 21 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | C# |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
unity-mcp · Summary
Unity MCP server enabling AI clients to perform Unity Editor actions through the Model Context Protocol.
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 · Use cases
- Automating repetitive Unity editor tasks through AI assistants
- Enabling AI-powered scene creation and modification in Unity
- Integrating AI code review and refactoring directly into Unity development workflow
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-everythingunity-mcp · Install
Installation
- Download the latest release package from [GitHub](https://github.com/wondeks/unity-mcp/raw/refs/heads/master/Editor/Commands/mcp_unity_2.4.zip)
- Extract the package to your Unity project's Editor folder
- Restart Unity Editor
Claude Desktop Configuration
Add the following to your Claude Desktop config.json:
{
"mcpServers": {
"unity-mcp": {
"command": "path/to/Unity.exe",
"args": ["-mcp", "-mcpPort", "8080"]
}
}
}