EDDI vs everything
Side-by-side comparison to help you pick between these two MCP servers.
EDDI by labsai | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 353 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Java | TypeScript |
| Last commit | this month | this month |
EDDI · Summary
EDDI is a Java-based multi-agent orchestration middleware with native MCP support for production-grade AI systems.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
EDDI · Use cases
- Enterprise multi-agent system orchestration with automatic routing based on context and intent
- Compliance-governed AI deployment with audit trails for regulated industries
- Slack-integrated AI agents for team collaboration with multi-agent debate 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
EDDI · Install
Quick Install
The fastest way to get EDDI running is the one-command installer:
# Linux / macOS / WSL2
curl -fsSL https://raw.githubusercontent.com/labsai/EDDI/main/install.sh | bash
# Windows (PowerShell)
Invoke-WebRequest -UseBasicParsing -Uri "https://raw.githubusercontent.com/labsai/EDDI/main/install.ps1" -OutFile "install.ps1"
Unblock-File .\install.ps1
.\install.ps1MCP Configuration
To use with Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"eddi": {
"command": "docker",
"args": ["run", "--rm", "-i", "labsai/eddi", "mcp"]
}
}
}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