MCP Catalogs
Home

Unity-AI-ProBuilder vs everything

Side-by-side comparison to help you pick between these two MCP servers.

Unity-AI-ProBuilder
by IvanMurzak
everything
by modelcontextprotocol
Stars★ 41★ 85,748
30d uses
Score4577
Official
Categories
Developer ToolsAI / LLM ToolsMedia
Developer ToolsAI / LLM ToolsOther
LanguageC#TypeScript
Last committhis monththis month

Unity-AI-ProBuilder · Summary

Unity MCP server that enables AI assistants to create and manipulate 3D meshes through natural language commands.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

Unity-AI-ProBuilder · Use cases

  • AI-assisted level prototyping in game development
  • Procedural 3D asset generation through natural language commands
  • Automated mesh optimization and transformation for Unity projects

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-AI-ProBuilder · Install

Installation Options

  1. **Installer Package**: Download the [AI-ProBuilder-Installer.unitypackage](https://github.com/IvanMurzak/Unity-AI-ProBuilder/releases/latest/download/AI-ProBuilder-Installer.unitypackage) and import it into your Unity project.
  1. **OpenUPM-CLI**: Install via OpenUPM CLI with:
openupm add com.ivanmurzak.unity.mcp.probuilder

MCP Client Configuration

Add to your MCP client configuration (e.g., Claude Desktop):

{
  "mcpServers": {
    "unity-probuilder": {
      "command": "dotnet",
      "args": ["run", "--project", "/path/to/Unity-AI-ProBuilder"],
      "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
Comparison generated from public README + GitHub signals. Last updated automatically.