everything vs unreal-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | unreal-mcp by runreal | |
|---|---|---|
| Stars | ★ 85,748 | ★ 101 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsMedia |
| Language | TypeScript | Python |
| Last commit | this month | 12 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
unreal-mcp · Summary
An MCP server for Unreal Engine that uses Python remote execution without requiring a new plugin.
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 · Use cases
- Automating Unreal Engine asset management and validation through AI assistants
- Generating game content and levels using natural language commands
- Streamlining Unreal Engine development workflows with AI-powered tools
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-everythingunreal-mcp · Install
- Enable Python Editor Script Plugin and Remote Execution in Unreal Engine
- Add to your Claude Desktop config:
{
"mcpServers": {
"unreal": {
"command": "npx",
"args": [
"-y",
"@runreal/unreal-mcp"
]
}
}
}