MCP Catalogs
Home

everything vs UnrealMotionGraphicsMCP

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

everything
by modelcontextprotocol
UnrealMotionGraphicsMCP
by winyunq
Stars★ 85,748★ 150
30d uses
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptC++
Last committhis month1 mo ago

everything · Summary

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

UnrealMotionGraphicsMCP · Summary

MCP server for Unreal Engine UMG UI automation with blueprint integration and JSON-based workflow.

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

UnrealMotionGraphicsMCP · Use cases

  • Automated UI generation for games and applications
  • Version control of UMG interfaces through JSON representation
  • AI-assisted UI design and iteration within Unreal Engine
  • Blueprint automation and programmatic node manipulation

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

UnrealMotionGraphicsMCP · Install

Installation

  1. **Install the Plugin**

- Navigate to your project's Plugins folder: YourProject/Plugins/ - Clone the repository: git clone https://github.com/winyunq/UnrealMotionGraphicsMCP.git UmgMcp - Restart the Unreal Editor

  1. **Connect to Gemini CLI**

- Edit your settings.json file (usually at C:\Users\YourUsername\.gemini\) - Add to mcpServers: ``json "UmgMcp": { "command": "uv", "args": [ "run", "--directory", "D:\\Path\\To\\YourUnrealProject\\Plugins\\UmgMcp\\Resources\\Python", "UmgMcpServer.py" ] } ``

Comparison generated from public README + GitHub signals. Last updated automatically.