time vs agent-board
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | agent-board by quentintou | |
|---|---|---|
| Stars | ★ 85,748 | ★ 21 |
| 30天用量 | — | — |
| 综合分 | 77 | 39 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 3 个月前 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
agent-board · 概述
开源的多代理任务看板,支持看板视图、DAG依赖关系和MCP服务器集成。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
agent-board · 使用场景
- 协调多个具有任务依赖关系的 OpenClaw 代理
- 构建具有自动任务链接的多步骤 AI 工作流
- 管理具有审计跟踪和性能指标的 AI 代理团队
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"]
}
}
}agent-board · 安装
git clone https://github.com/quentintou/agent-board.git
cd agent-board
npm install
npm run build
npm start对于 Claude Desktop 集成,添加到 claude_desktop_config.json:
{
"mcpServers": {
"agent-board": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"AGENTBOARD_API_KEYS": "sk-abc123:agent1,sk-def456:agent2"
}
}
}
}