Server data from the Official MCP Registry
Regulated-industry AI compliance: EU AI Act, APRA, NIST AI RMF, ISO 42001, AU AI Safety.
Regulated-industry AI compliance: EU AI Act, APRA, NIST AI RMF, ISO 42001, AU AI Safety.
This is a well-structured MCP server for regulated-industry AI compliance knowledge with clean architecture and proper input validation. The codebase exhibits strong security practices: all user inputs are validated via Zod schemas, data is embedded at build-time rather than fetched dynamically, and there are no hardcoded credentials or suspicious external calls. Minor code quality observations (broad exception handling in one place, verbose error messaging that could theoretically leak paths) are low-severity and do not materially impact security. Permissions are appropriate for the server's purpose. Supply chain analysis found 3 known vulnerabilities in dependencies (1 critical, 2 high severity). Package verification found 1 issue.
7 files analyzed · 7 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-uchit-mcp-regulated-ai-compliance": {
"args": [
"-y",
"@hellouchit/mcp-regulated-ai-compliance"
],
"command": "npx"
}
}
}From the project's GitHub README.
A Model Context Protocol server exposing the regulated-industry AI compliance knowledge from hellouchit.com as tools, resources, and prompts callable from any MCP-compatible AI client — Claude Desktop, Cursor, Zed, Windsurf, OpenAI ChatGPT, Continue, Cline, and ~40 other clients.
Free + open-source (Apache 2.0, dataset CC BY 4.0). Built by Uchit Vyas — FDE for Technology Transformation & AI at Accenture ANZ.
The OpenAI GPT Store hosts the EU AI Act and AU AI Safety Standard coaches as ChatGPT-only assets. The Claude Project equivalents are private to each user's Claude Pro account (no public sharing). Neither reaches the practitioners who work primarily inside Cursor, Zed, Continue, Cline, or the Claude API directly.
An MCP server is the only Claude-side asset that is genuinely shareable + multi-client. It surfaces the same dataset, anti-patterns, decision trees, and classification logic — but as tools any AI agent in any compatible client can call. One published server → 40+ client surfaces → the practitioner who never opens ChatGPT or claude.ai still ends up citing your work.
mcp-regulated-ai-compliance/
├── README.md ← you are here
├── scope/ ← the design docs (read FIRST)
│ ├── 00-product-brief.md What this is + who it's for
│ ├── 01-architecture.md System design + transport choices
│ ├── 02-tools-spec.md The 10 tools the server exposes
│ ├── 03-resources-spec.md The resources + prompts
│ ├── 04-distribution-strategy.md Where to list + how to get installs
│ └── 05-build-roadmap.md v0.1 → v1.0 in 4 phases
├── src/
│ ├── index.ts ← MCP server entry point (working stub)
│ ├── tools/ ← one file per tool
│ │ └── lookup-control.ts ← FULLY IMPLEMENTED as reference
│ ├── resources/ ← one file per resource type
│ ├── prompts/ ← pre-built prompt templates
│ ├── data/ ← embedded knowledge (dataset, anti-patterns, playbooks)
│ │ ├── dataset.json ← 56 controls × 28 regulations × 261 tools
│ │ ├── dataset.csv ← same data, CSV format
│ │ ├── anti-patterns.md ← 15 named failure modes
│ │ └── playbooks/ ← 90-day playbooks
│ └── lib/
├── docs/
│ └── install/ ← per-client install guides
├── examples/ ← sample conversations / use-cases
├── tests/
├── package.json ← npm config (working)
├── tsconfig.json ← TypeScript config
├── LICENSE ← Apache 2.0 (code) + CC BY 4.0 (dataset)
├── .gitignore
└── .github/workflows/ ← CI: build + publish to npm
v0.2.1 = data-source abstraction so the same codebase runs on Node (stdio, node:http) AND on Cloudflare Workers / Deno Deploy / Vercel Edge. See
worker/for the Cloudflare scaffold.
| Phase | Status |
|---|---|
| Phase 0 — Scope + skeleton | ✅ done |
| Phase 1 — Working server + reference tool | ✅ done |
| Phase 2 — 6 core tools | ✅ done |
| Phase 3 — 4 resource providers + 5 prompts | ✅ done |
| Phase 4 — npm publish + directory submissions | ✅ done |
| Phase 5 — HTTP transport + 4 playbooks + parser | ✅ done (v0.2.0) |
npx mcp-regulated-ai-compliance-http boots a Node HTTP server on port 3000 (configurable) at /mcp. Unlocks Smithery, ChatGPT MCP directory, browser-based clients, and any platform that prefers HTTP over stdio. Stateless by default; set MCP_STATEFUL=true for per-session UUIDs.eu-ai-act-12-weeks — Piloting → Articles 9-15 ready by 2 Aug 2026cisa-attestation-90-days — Federal contractor SSDF + Common Form 3201-NEWcloud-cost-aware-to-controlled — FinOps Aware → Controlled (AWS / Azure / GCP)vault-theatre-to-workload-identity — Long-lived creds → OIDC federationlookup_control · get_anti_pattern · crosswalk · walk_playbook · classify_use_case · list_regulationseu-ai-act-classify · au-ai-safety-walkthrough · crosswalk-frameworks · playbook-week · anti-pattern-diagnosticnpm publish --provenance on version tag (sigstore-anchored)| Channel | Status |
|---|---|
| npm | ✅ @hellouchit/mcp-regulated-ai-compliance@0.2.0 |
| Official MCP Registry | ✅ io.github.uchit/mcp-regulated-ai-compliance |
| Glama | ✅ verified |
| mcp.so | ⏳ awaiting review |
| PulseMCP | ⏳ auto-pulls from Official Registry (~24h) |
| awesome-mcp-servers (Security) | ⏳ PR #7084 |
| Smithery | 🔜 ready to submit (HTTP transport now live; deploy hosted endpoint) |
See scope/05-build-roadmap.md for the v0.2+ roadmap.
For Claude Desktop:
# In your Claude Desktop config file (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"regulated-ai-compliance": {
"command": "npx",
"args": ["-y", "@hellouchit/mcp-regulated-ai-compliance"]
}
}
}
Then restart Claude Desktop → you'll see new tools available: lookup_control, classify_use_case, get_anti_pattern, etc.
eu_ai_act · cps234 · cps230 · soci · ai_safety_au · privacy_au · e8 · irap · dora · nis2 · gdpr · circia · hipaa · fda_samd · cisa_ssa · ssdf · ai_rmf · sp80053 · iso42001 · iso27001 · slsa · owasp_llm · atlas · bcbs239 · pci · iec62443 · iso13485 · iec62304
npm install
npm run build
npm run dev # runs server in dev mode (stdio transport)
npm test # runs the test suite
See scope/01-architecture.md for the dev-loop details.
Code: Apache 2.0. Free for individual + commercial use. Patent grant included. Dataset (regulations × controls × tooling, anti-patterns, playbooks, crosswalks): CC BY 4.0 — attribution to hellouchit.com required.
If you ship a commercial product on top of this, please consider sponsoring on GitHub.
For organisations needing a multi-tenant hosted instance with:
→ The managed/SaaS edition is on the roadmap. Sign up at hellouchit.com/letters to be notified when it ships, or email contact@hellouchit.com to be early-access.
Be the first to review this server!
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
by Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption