everything vs ue5-mcp-bridge
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | ue5-mcp-bridge by Natfii | |
|---|---|---|
| Stars | ★ 85,748 | ★ 45 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ue5-mcp-bridge · Summary
MCP server bridging AI assistants to Unreal Engine 5 editor, enabling direct manipulation of game development assets and workflows.
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-bridge · Use cases
- Automating repetitive UE5 setup tasks like creating Blueprints and configuring input bindings
- Directly manipulating game elements through natural language commands ('Spawn a point light at position 0,0,500')
- Rapid prototyping by describing desired functionality instead of navigating complex menus
- Querying UE5 API documentation context while working in the editor
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-everythingue5-mcp-bridge · Install
Installation
- Clone the repository:
git clone https://github.com/Natfii/unrealclaude-mcp-bridge.git
cd unrealclaude-mcp-bridgenpm install- Configure your MCP client:
**Claude Desktop** (claude_desktop_config.json):
{
"mcpServers": {
"unreal": {
"command": "node",
"args": ["/path/to/unrealclaude-mcp-bridge/index.js"],
"env": {
"UNREAL_MCP_URL": "http://localhost:3000"
}
}
}
}**Claude Code** (~/.claude/settings.json):
{
"mcpServers": {
"unreal": {
"command": "node",
"args": ["/path/to/unrealclaude-mcp-bridge/index.js"],
"env": {
"UNREAL_MCP_URL": "http://localhost:3000"
}
}
}
}