AgentRelay vs time
Side-by-side comparison to help you pick between these two MCP servers.
AgentRelay by mnemox-ai | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 63 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
AgentRelay · Summary
AgentRelay is an MCP server that coordinates verified microtasks between AI agents to optimize idle compute capacity.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
AgentRelay · Use cases
- Distributing AI workloads across multiple agents to maximize utilization of paid API quotas
- Creating a validation layer for AI-generated outputs without human intervention
- Building reputation systems for autonomous AI agents based on verified performance
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
AgentRelay · Install
Installation
**Docker (recommended)**
git clone https://github.com/mnemox-ai/AgentRelay.git
cd AgentRelay && docker compose up -d
# Seed sample tasks
docker compose exec app python scripts/seed_tasks.py**pip**
pip install agentrelay-protocol**MCP Configuration (Claude Desktop / Claude Code)**
{
"mcpServers": {
"agentrelay": {
"command": "python",
"args": ["-m", "agentrelay"],
"env": {
"DATABASE_URL": "postgresql+asyncpg://user:pass@localhost:5432/agentrelay",
"REDIS_URL": "redis://localhost:6379/0"
}
}
}
}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"]
}
}
}