ue5-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ue5-mcp by mirno-ehf | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 37 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | C++ | TypeScript |
| Last commit | 1 mo ago | this month |
ue5-mcp · Summary
UE5 MCP server plugin enabling AI agents to edit Unreal Engine Blueprints through natural language commands.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ue5-mcp · Use cases
- Add game components to actors through natural language commands
- Search and replace specific function calls across multiple Blueprints
- Analyze existing Blueprint systems to understand their functionality
- Create new Blueprints or modify existing ones based on AI suggestions
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
ue5-mcp · Install
Installation
- Clone this repository:
git clone https://github.com/mirno-ehf/ue5-mcp.git - Follow the plugin installation instructions for Unreal Engine 5
- Enable the plugin in your UE5 project
- Tell Claude Code:
Set up https://github.com/mirno-ehf/ue5-mcp in my project
Claude Desktop Configuration
Add this to your Claude Desktop config.json:
{
"mcpServers": {
"ue5-mcp": {
"command": "path/to/ue5-mcp",
"args": []
}
}
}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