unity-api-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
unity-api-mcp by Codeturion | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 56 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 3 mo ago | this month |
unity-api-mcp · Summary
Unity API MCP server providing instant, accurate Unity documentation lookup for AI agents.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
unity-api-mcp · Use cases
- AI-assisted Unity development with accurate API documentation
- Preventing hallucinated Unity API signatures in AI-generated code
- Efficient Unity API lookup during complex multi-step research workflows
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-api-mcp · Install
Add to your MCP config (.mcp.json, mcp.json, or your tool's MCP settings), setting UNITY_VERSION to match your project:
{
"mcpServers": {
"unity-api": {
"command": "uvx",
"args": ["unity-api-mcp"],
"env": {
"UNITY_VERSION": "2022"
}
}
}
}Valid values: "2022", "2023", or "6".
On first run, the server downloads the correct database (~18-24 MB) to ~/.unity-api-mcp/.
Alternatively, you can install with pip: pip install unity-api-mcp and modify the configuration to use command": "unity-api-mcp" instead of uvx.
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