time vs ai-compliance-monitor
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | ai-compliance-monitor by vdineshk | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsMonitoringDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
ai-compliance-monitor · Summary
MCP server providing structured regulatory intelligence for AI agents to ensure compliance across jurisdictions.
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
ai-compliance-monitor · Use cases
- AI agents hiring/recruitment screening tools
- Financial services credit scoring systems
- Healthcare medical triage applications
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"]
}
}
}ai-compliance-monitor · Install
Installation via MCP
Add the following to your Claude Desktop configuration:
{
"mcpServers": {
"ai-compliance-monitor": {
"command": "npx",
"args": ["@modelcontextprotocol/server-ai-compliance-monitor"],
"env": {}
}
}
}Self-Hosted Deployment
- Clone the repository:
``bash git clone https://github.com/vdineshk/ai-compliance-monitor.git cd ai-compliance-monitor ``
- Install dependencies:
``bash npm install ``
- Create D1 database:
``bash npx wrangler d1 create ai-compliance-monitor-db # Copy database_id into wrangler.toml ``
- Run migrations and seed data:
``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 ``
- Deploy:
``bash npx wrangler deploy ``