MCP Catalogs
Home

everything vs unreal-mcp

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

everything
by modelcontextprotocol
unreal-mcp
by runreal
Stars★ 85,748★ 101
30d uses
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsMedia
LanguageTypeScriptPython
Last committhis month12 mo ago

everything · Summary

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

unreal-mcp · Summary

An MCP server for Unreal Engine that uses Python remote execution without requiring a new plugin.

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

unreal-mcp · Use cases

  • Automating Unreal Engine asset management and validation through AI assistants
  • Generating game content and levels using natural language commands
  • Streamlining Unreal Engine development workflows with AI-powered tools

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

unreal-mcp · Install

  1. Enable Python Editor Script Plugin and Remote Execution in Unreal Engine
  2. Add to your Claude Desktop config:
{
  "mcpServers": {
    "unreal": {
      "command": "npx",
      "args": [
        "-y",
        "@runreal/unreal-mcp"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.