time vs ai-compliance-monitor
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | ai-compliance-monitor by vdineshk | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30天用量 | — | — |
| 综合分 | 77 | 36 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | AI / LLM 工具可观测性开发者工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 1 个月前 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
ai-compliance-monitor · 概述
MCP 服务器为 AI 代理提供结构化监管情报,确保跨司法管辖区合规性。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
ai-compliance-monitor · 使用场景
- 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"]
}
}
}ai-compliance-monitor · 安装
通过 MCP 安装
将以下内容添加到您的 Claude Desktop 配置中:
{
"mcpServers": {
"ai-compliance-monitor": {
"command": "npx",
"args": ["@modelcontextprotocol/server-ai-compliance-monitor"],
"env": {}
}
}
}自托管部署
- 克隆仓库:
``bash git clone https://github.com/vdineshk/ai-compliance-monitor.git cd ai-compliance-monitor ``
- 安装依赖:
``bash npm install ``
- 创建 D1 数据库:
``bash npx wrangler d1 create ai-compliance-monitor-db # 将 database_id 复制到 wrangler.toml ``
- 运行迁移和种子数据:
``bash npx wrangler d1 migrations apply ai-compliance-monitor-db --remote npx wrangler d1 execute ai-compliance-monitor-db --remote --file=./migrations/0002_seed_data.sql ``
- 部署:
``bash npx wrangler deploy ``