VibeUE vs everything
Side-by-side comparison to help you pick between these two MCP servers.
VibeUE by kevinpbuckley | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 184 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsMedia | Developer ToolsAI / LLM ToolsOther |
| Language | C++ | TypeScript |
| Last commit | this month | this month |
VibeUE · Summary
VibeUE is an AI-powered Unreal Engine development tool with MCP server integration providing Python API access and specialized tools for game development workflows.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
VibeUE · Use cases
- AI-assisted creation and modification of Unreal Engine Blueprints and assets through natural language
- Automated terrain generation using real-world geographic data via MCP tools
- Debugging Unreal Engine projects by analyzing logs with AI and regex filtering
- Research and documentation gathering for game development with integrated web search capabilities
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
VibeUE · Install
Installation
- Obtain a free VibeUE API key at [vibeue.com/login](https://www.vibeue.com/login)
- Configure your IDE with the MCP server using the following configuration:
{
"mcpServers": {
"vibeue": {
"command": "vibeue",
"args": ["mcp"]
}
}
}For Unreal Engine integration:
- Install the VibeUE plugin in Unreal Editor
- Paste your API key into the VibeUE settings gear icon inside 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-everything