MCP Catalogs
Home

Unity-AI-Tools-Template vs everything

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

Unity-AI-Tools-Template
by IvanMurzak
everything
by modelcontextprotocol
Stars★ 18★ 85,748
30d uses
Score4377
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageC#TypeScript
Last committhis monththis month

Unity-AI-Tools-Template · Summary

Template for creating Unity MCP tools with initialization scripts and setup guidance.

everything · Summary

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

Unity-AI-Tools-Template · Use cases

  • Creating custom AI tools for Unity Editor workflows
  • Developing runtime MCP tools for Unity builds
  • Setting up package distribution for Unity MCP 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

Unity-AI-Tools-Template · Install

Installation

  1. Create a new repository from this template
  2. Clone your new repository
  3. Initialize project with:

``powershell ./commands/init.ps1 -PackageId "com.company.package" -PackageName "My Package" ``

  1. Update package.json with your package details
  2. Generate Unity meta files by opening projects in Unity Editor
  3. Add your MCP tools to appropriate directories (Editor or Runtime)
  4. Set up CI/CD with GitHub Actions for automated testing and deployment

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.