MCP Catalogs
Home

ue-mcp vs everything

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

ue-mcp
by db-lyon
everything
by modelcontextprotocol
Stars★ 96★ 85,748
30d uses
Score4977
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageC++TypeScript
Last committhis monththis month

ue-mcp · Summary

Complete Unreal Engine development toolkit with 450+ MCP tools for AI-powered game development workflows.

everything · Summary

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

ue-mcp · Use cases

  • Automating repetitive Unreal Engine development tasks through natural language commands
  • Generating and modifying game assets, blueprints, and materials using AI assistance
  • Creating complex game development workflows with the YAML flow engine for multi-step processes

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

ue-mcp · Install

Quick Start

npx ue-mcp init

The interactive setup will:

  1. Find your .uproject (auto-detects in current directory)
  2. Let you choose which tool categories to enable
  3. Deploy the C++ bridge plugin to your project
  4. Enable required UE plugins (Niagara, PCG, GAS, etc.)
  5. Detect and configure your MCP client (Claude Code, Claude Desktop, Cursor)

Restart the editor once after setup to load the bridge plugin. To update later: npx ue-mcp update

Manual Configuration

Add to your MCP client config:

{
  "mcpServers": {
    "ue-mcp": {
      "command": "npx",
      "args": ["ue-mcp", "C:/path/to/MyGame.uproject"]
    }
  }
}

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.