Unreal-MCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Unreal-MCP by aadeshrao123 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 28 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | C++ | TypeScript |
| Last commit | this month | this month |
Unreal-MCP · Summary
MCP server providing 280+ commands to control Unreal Engine 5 from AI coding assistants.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Unreal-MCP · Use cases
- Creating and managing game assets from AI coding environments
- Automating Unreal Engine workflow through AI assistants
- Integrating Unreal development with AI-powered code completion
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 · Install
Installation
Option A: CLI (Recommended for Claude Code)
# Install CLI tool
npm install -g unrealcli
# Setup in UE5 project
cd YourProject/
ue-cli init
ue-cli doctorOption B: MCP Server (For Cursor, Windsurf, etc.)
# Clone plugin to project
git clone https://github.com/aadeshrao123/Unreal-MCP.git Plugins/UnrealMCP
# Install Python server
pip install unrealmcp
# Add to Claude Desktop config (example)
{
"mcpServers": {
"unreal": {
"command": "unrealmcp"
}
}
}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