EDDI vs time
Side-by-side comparison to help you pick between these two MCP servers.
EDDI by labsai | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 353 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOps & Infra | ProductivityDeveloper ToolsCommunication |
| 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.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
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
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
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"]
}
}
}time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}