ai-compliance-monitor
by vdineshk·★ 0·Score 36
MCP server providing structured regulatory intelligence for AI agents to ensure compliance across jurisdictions.
Overview
The AI Compliance Monitor is an MCP server designed to help AI agents understand and comply with regulatory requirements across multiple jurisdictions. It provides tools to check obligations, access detailed regulation articles, monitor deadlines, and compare requirements across different frameworks. Currently supporting the EU AI Act, Singapore IMDA Agentic AI Framework, and Colorado AI Act, it covers key use cases like hiring screening, credit scoring, customer service agents, and more. The server offers both MCP protocol access and a REST API for integration.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Teams building AI agents that need to comply with multiple international regulations, especially those already using or comfortable with Cloudflare infrastructure.
When NOT to choose this
If you need compliance coverage for jurisdictions beyond EU, Singapore, and Colorado, or if you require self-hosting options outside of Cloudflare.
Tools this server exposes
4 tools extracted from the READMEcheck_obligationsGiven an agent use case + jurisdiction → applicable requirements
get_regulation_articlesStructured regulation details with evidence requirements
check_deadlineEnforcement dates, penalties, compliance milestones
compare_jurisdictionsSide-by-side obligation comparison across regulations
Comparable tools
Installation
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 ``
FAQ
- What regulations are currently supported?
- Currently supports the EU AI Act, Singapore IMDA Agentic AI Framework, and Colorado AI Act (SB 24-205).
- Can I self-host this server?
- Yes, the server can be self-hosted on Cloudflare Workers with a D1 database. Detailed deployment instructions are provided in the README.
Compare ai-compliance-monitor with
Last updated · Auto-generated from public README + GitHub signals.