MCP Catalogs
Home

everything vs UnrealGenAISupport

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

everything
by modelcontextprotocol
UnrealGenAISupport
by prajwalshettydev
Stars★ 85,748★ 587
30d uses
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsOther
LanguageTypeScriptC++
Last committhis month1 mo ago

everything · Summary

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

UnrealGenAISupport · Summary

Unreal Engine plugin supporting 200+ AI models with MCP server functionality for scene control and blueprint generation.

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

UnrealGenAISupport · Use cases

  • NPC AI development in Unreal Engine projects using agentic LLM instances
  • Automatic generation and modification of blueprints and game objects through Claude Desktop
  • 3D asset generation from text prompts with AI model integration like Meshy, Tripo, and Hunyuan3D

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

UnrealGenAISupport · Install

Installation

Via Git:

  1. Clone the repository: git clone https://github.com/prajwalshettydev/UnrealGenAISupport.git
  2. Add the plugin to your Unreal Engine project
  3. Restart the editor

Via Unreal Marketplace (Fab):

  1. Download from [Fab Marketplace](https://muddyterrain.com/t/genai-fab)
  2. Install in your project

MCP Setup for Claude Desktop:

  1. Add to Claude Desktop config (claude_desktop_config.json):
{
  "mcpServers": {
    "unreal": {
      "command": "path/to/your/UnrelaEngine/Binaries/YourPlatform/YourProject.exe",
      "args": ["-mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.