AgentRelay vs time
并排对比,帮你在这两个 MCP server 之间做选择。
AgentRelay by mnemox-ai | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 63 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具效率工具 | 效率工具开发者工具沟通协作 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
AgentRelay · 概述
AgentRelay 是一个 MCP 服务器,协调 AI 代理之间的验证微任务,优化空闲计算能力。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
AgentRelay · 使用场景
- 在多个代理间分配 AI 工作负载,最大化付费 API 配额利用率
- 为 AI 生成的输出创建无需人工干预的验证层
- 基于验证性能为自主 AI 代理建立声誉系统
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
AgentRelay · 安装
安装
**Docker (推荐)**
git clone https://github.com/mnemox-ai/AgentRelay.git
cd AgentRelay && docker compose up -d
# 种子示例任务
docker compose exec app python scripts/seed_tasks.py**pip**
pip install agentrelay-protocol**MCP 配置 (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 · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}