MCP Catalogs
Home

Unity-MCP vs everything

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

Unity-MCP
by IvanMurzak
everything
by modelcontextprotocol
Stars★ 2,767★ 85,748
30d uses
Score5777
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageC#TypeScript
Last committhis monththis month

Unity-MCP · Summary

Unity-MCP enables AI agents to work directly in Unity Editor and runtime through MCP protocol.

everything · Summary

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

Unity-MCP · Use cases

  • Automating Unity project development tasks with AI agents
  • Creating dynamic NPC behavior in games using LLMs at runtime
  • Debugging Unity projects 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

Unity-MCP · Install

Installation

Unity Package

  1. [Download the Unity package](https://github.com/IvanMurzak/Unity-MCP/releases/latest/download/AI-Game-Dev-Installer.unitypackage)
  2. Import it into your Unity project

OpenUPM

openupm add com.ivanmurzak.unity.mcp

CLI

# Install CLI
npm install -g unity-mcp-cli

# Install plugin in Unity project
unity-mcp-cli install-plugin ./MyUnityProject

# Setup AI skills
unity-mcp-cli setup-skills claude-code ./MyUnityProject

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "unity-mcp": {
      "command": "npx",
      "args": ["unity-mcp-server"],
      "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.