MCP Catalogs
Home

mcp-unity vs everything

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

mcp-unity
by CoderGamester
everything
by modelcontextprotocol
Stars★ 1,699★ 85,748
30d uses
Score5677
Official
Categories
Developer ToolsAI / LLM Toolsgame-development
Developer ToolsAI / LLM ToolsOther
LanguageC#TypeScript
Last committhis monththis month

mcp-unity · Summary

MCP server for Unity Editor enabling AI assistants to manipulate scenes, GameObjects, and other Unity assets.

everything · Summary

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

mcp-unity · Use cases

  • Unity developers using AI assistants to automate scene creation and object manipulation
  • Game studios implementing AI workflows for iterative game development
  • Educational environments teaching Unity development 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

mcp-unity · Install

Installation

  1. Install Node.js 18 or later from [nodejs.org](https://nodejs.org/en/download/)
  2. Install the Unity MCP server via npm:

``bash npm install -g @codergamester/mcp-unity ``

  1. Configure your IDE (Cursor, Windsurf, etc.) to use the MCP server

Claude Desktop Configuration

Add to Claude's config.json:

{
  "mcpServers": {
    "unity": {
      "command": "npx",
      "args": ["@codergamester/mcp-unity"],
      "env": {
        "UNITY_PROJECT_PATH": "/path/to/your/unity/project"
      }
    }
  }
}

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.