everything vs monolith
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | monolith by tumourlove | |
|---|---|---|
| Stars | ★ 85,748 | ★ 110 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsMedia |
| Language | TypeScript | C++ |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
monolith · Summary
Unreal Engine MCP plugin with 1,226 actions across 16 modules, enabling AI assistants to manipulate Blueprints, Materials, Animation, and more.
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
monolith · Use cases
- Automated Blueprint creation and modification based on natural language descriptions
- Batch material editing across multiple assets with texture import and configuration
- Animation sequence generation with bone tracks, curves and notifies via AI prompts
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-everythingmonolith · Install
Installation
- Download the Monolith plugin from the Unreal Engine Marketplace
- Extract the plugin to your UE project's Plugins directory
- Restart Unreal Engine
- Enable the plugin in Edit -> Plugins -> Monolith
Configuration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"monolith": {
"command": "path/to/monolith.exe",
"args": []
}
}
}