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 | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | C++ | TypeScript |
| Last commit | this month | this 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 initThe interactive setup will:
- Find your
.uproject(auto-detects in current directory) - Let you choose which tool categories to enable
- Deploy the C++ bridge plugin to your project
- Enable required UE plugins (Niagara, PCG, GAS, etc.)
- 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