everything vs unity-mcp-pro-plugin
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | unity-mcp-pro-plugin by youichi-uda | |
|---|---|---|
| Stars | ★ 85,748 | ★ 58 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | C# |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
unity-mcp-pro-plugin · Summary
Unity MCP Pro plugin provides 280+ AI tools for Unity development via WebSocket MCP connection.
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-pro-plugin · Use cases
- AI-assisted GameObject manipulation in Unity scenes with full undo history
- Script generation and optimization through direct MCP tool calls
- Material and shader editing via AI assistants with real-time preview
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-pro-plugin · Install
Installation
Unity Package Manager
- Open Unity → Window → Package Manager
- Click + → Add package from git URL...
- Enter:
https://github.com/youichi-uda/unity-mcp-pro-plugin.git
Alternative Methods
Clone to your project or download and copy to Packages/com.unity-mcp-pro/
Setup
- Install this plugin
- Get the MCP server from [unity-mcp.abyo.net](https://unity-mcp.abyo.net/)
- Build the server:
cd server && npm install && npm run build - Configure your AI client:
{
"mcpServers": {
"unity-mcp-pro": {
"command": "node",
"args": ["/path/to/server/build/index.js"]
}
}
}- Open Unity - plugin auto-connects, check Window → Unity MCP Pro