agentgate vs time
并排对比,帮你在这两个 MCP server 之间做选择。
agentgate by agentkitai | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 27 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具安全 | 效率工具开发者工具沟通协作 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
agentgate · 概述
用于 AI 的人类参与式审批系统,支持 MCP 集成和基于策略的决策路由。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
agentgate · 使用场景
- AI 代理在向客户发送电子邮件前需要审批
- 自动化系统在生产环境变更前需要人工确认
- 多代理协调系统中,不同团队的行动需要监督
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
agentgate · 安装
安装
- 安装依赖项:
pnpm install- 运行数据库迁移:
pnpm --filter @agentgate/server db:migrate- 引导(创建管理员 API 密钥):
pnpm --filter @agentgate/server bootstrap- 启动开发环境:
pnpm devClaude Desktop 集成
在您的 claude_desktop_config.json 中添加:
{
"mcpServers": {
"agentgate": {
"command": "npx",
"args": ["@agentgate/mcp"],
"env": {
"AGENTGATE_URL": "http://localhost:3000",
"AGENTGATE_API_KEY": "agk_..."
}
}
}
}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"]
}
}
}