MCP Catalogs
Home

funplay-unity-mcp vs everything

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

funplay-unity-mcp
by FunplayAI
everything
by modelcontextprotocol
Stars★ 57★ 85,748
30d uses
Score4677
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageC#TypeScript
Last committhis monththis month

funplay-unity-mcp · Summary

Advanced MCP server for Unity Editor with 91 built-in tools for automation, scene creation, and AI development.

everything · Summary

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

funplay-unity-mcp · Use cases

  • Automating Unity scene creation and script generation through natural language prompts
  • Testing and validation of gameplay mechanics through input simulation and screenshot capture
  • Performance analysis and debugging of Unity projects with automated inspection tools

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

funplay-unity-mcp · Install

  1. Install via UPM (Git URL): In Unity, go to **Window → Package Manager → + → Add package from git URL** and enter https://github.com/FunplayAI/funplay-unity-mcp.git
  2. Start the MCP Server: Use **Menu: Funplay → MCP Server** to start the server on http://127.0.0.1:8765/
  3. Configure Your AI Client: Use the built-in **One-Click MCP Configuration** or manually add:
{
  "mcpServers": {
    "funplay": {
      "type": "http",
      "url": "http://127.0.0.1:8765/"
    }
  }
}

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.