unreal-api-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
unreal-api-mcp by Codeturion | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 75 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsDatabase | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
unreal-api-mcp · Summary
MCP server providing instant, accurate Unreal Engine API documentation to prevent hallucinations and save tokens.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
unreal-api-mcp · Use cases
- AI-assisted Unreal Engine development with accurate API lookups
- Preventing hallucinated function signatures and include paths
- Checking for deprecated APIs before implementation
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-api-mcp · Install
Installation
Add to your MCP config (.mcp.json, mcp.json, or your tool's MCP settings), setting UNREAL_VERSION to match your project:
{
"mcpServers": {
"unreal-api": {
"command": "uvx",
"args": ["unreal-api-mcp"],
"env": {
"UNREAL_VERSION": "5.5"
}
}
}
}Alternatively, using pip install:
pip install unreal-api-mcp{
"mcpServers": {
"unreal-api": {
"command": "unreal-api-mcp",
"args": [],
"env": {
"UNREAL_VERSION": "5.5"
}
}
}
}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