Unreal_mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Unreal_mcp by ChiR24 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 622 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsMedia | Developer ToolsAI / LLM ToolsOther |
| Language | C++ | TypeScript |
| Last commit | this month | this month |
Unreal_mcp · Summary
MCP server enabling AI assistants to control Unreal Engine through native C++ Automation Bridge plugin.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Unreal_mcp · Use cases
- Automate game development workflows by scripting asset creation and scene configuration
- Create AI-powered level design assistants that can generate and modify game environments
- Build testing automation frameworks for validating game functionality across different scenarios
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
Prerequisites
- Unreal Engine 5.0-5.8
- Node.js 18+ (for TypeScript bridge option)
Native MCP Transport (Recommended)
- Install the MCP Automation Bridge plugin in your Unreal project
- Enable "Native MCP" in Project Settings > Plugins > MCP Automation Bridge
- Configure your MCP client to connect to
http://localhost:3000/mcp
Claude Desktop Configuration
{
"mcpServers": {
"unreal-engine": {
"type": "url",
"url": "http://localhost:3000/mcp"
}
}
}TypeScript Bridge (Alternative)
- Install the server:
npx unreal-engine-mcp-server - Configure MCP client to run the CLI with Node.js
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