The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the MCP Server Scf listing page.
Security compliance controls, frameworks, and risk management for AI agents.
Give your AI assistant access to 1,451 SCF security controls, 354+ framework mappings (NIST 800-53, ISO 27001, SOC 2, FedRAMP, GDPR), evidence tracking, risk registers, and vendor risk management — all through the Model Context Protocol.
Built for the SCF Controls Platform. Maintained by ComplianceGenie.io.
🆕 The platform is now open-source, self-hosted software. The SCF Controls Platform — SCF-native GRC tooling for the free Secure Controls Framework content — is published under AGPL-3.0 at scf-controls-platform-oss. Companies download and host it themselves via Docker Compose.
Having trouble? → docs/troubleshooting.md · API key setup → docs/authentication.md · How it works → docs/architecture.md
mcp-server-scf connects AI assistants to the SCF Controls Platform via MCP, enabling natural language interaction with your compliance program. Your AI can browse the full SCF control catalog, track implementation progress, manage evidence collection, assess risks, and monitor third-party vendors — all without leaving your editor or chat.
196 tools across 14 domains — click through for full parameter tables and example prompts:
| Domain | Tools | Description |
|---|---|---|
| Catalog | 8 | Browse 1,451 controls, 354+ frameworks, 5,736 assessment objectives, domains and evidence definitions |
| Control Scoping | 10 | Track implementation status across an 8-state workflow; bulk scope and unscope by framework; framework coverage, scope-change preview and per-control overrides |
| Evidence | 41 | Evidence tracking (single + batch), tasks, file review, health, validation, AI assessments and review queues |
| Risk Management | 17 | 5x5 risk matrix, risk register, scoring updates, custom risks, control↔risk traceability, risk profile |
| Vendor Risk (TPRM) | 23 | Vendor registry, AI research and assessments, certifications, action items, compensating controls |
| Organization | 10 | Users, orgs, audit trail, change cursor, work queues, notifications |
| Capabilities | 19 | KSI themes, scorecards, evidence posture, systems inventory, system evidence capabilities, catalog + AI recipes |
| Webhooks | 6 | Webhook endpoints, delivery logs, secret rotation |
| Documents | 15 | ISMS document generation, section editing, merge resolution, lifecycle transitions, export |
| Audit Engagements | 16 | Engagement workspaces, frozen scope, framework-native presentation, auditor access, structured queries |
| Catalog Reconciliation | 9 | Preview, decide, apply and roll back an SCF catalog version upgrade for your org |
| Teams | 11 | Business functions, teams and rosters, team accountability for controls and evidence (single + batch) |
| Collaboration | 7 | User assignments to controls, evidence and tasks; comment threads |
| Guided Journey | 4 | The staged path an organisation walks, journey templates, import, and named stage attestation |
Which platform operations became tools, which are deferred, and which stay out on purpose is recorded in docs/tool-scope.md.
Kick the tires without adding the server to a client — MCP Inspector launches a local UI that introspects every tool, its schema, and its description:
Inspector opens on http://localhost:6274 and connects to mcp-server-scf over stdio. You'll see all 196 tools, grouped by domain, with their Zod schemas rendered as a live form.
Live tool calls need your instance's URL and an API key — export SCF_API_URL and SCF_API_KEY in the same shell before launching Inspector, or set them under the "Environment Variables" tab inside the Inspector UI. Without them, you can still browse schemas and descriptions; tool calls return a configuration error.
The SCF Controls Platform is open-source software you host yourself — there is no sign-up. Deploy it from scf-controls-platform-oss (a Docker Compose stack with bundled PostgreSQL, Redis, and MinIO), then:
API_KEY in the platform's .env (generate one with openssl rand -hex 32), or create a key in Settings → API Keys once the app is running.http://localhost:8000 by default, or your deployed host.Use that key as SCF_API_KEY and the instance URL as SCF_API_URL (see Configuration).
Pick the route for your client.
Claude Desktop — the one-click path is the signed .mcpb Desktop Extension below. Claude Desktop does not register a custom URL scheme, so there is no clickable deeplink; instead you drag the .mcpb onto Settings → Extensions and paste your API key once. See anthropics/claude-code#26952 for the upstream tracking issue.
Cursor — click the badge below. Cursor registers the cursor:// scheme, so the deeplink opens the IDE with the server config pre-filled:
After install, edit the pre-filled SCF_API_URL to point at your instance — there is no hosted default.
Prefer to edit config by hand, or on a client without a deeplink (Windsurf, Docker)? See 3. Manual config below.
For Claude Desktop ≥ 0.11.0, the easiest install is a signed .mcpb bundle — no JSON editing, no npx runtime, no Node required on the host:
mcp-server-scf-<version>.mcpb from the latest GitHub release.scf_… API key. It's stored in your OS keychain, not in a config file.To uninstall or update the API key later: Settings → Extensions → SCF Controls Platform → Configure.
Claude Desktop — edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
Claude Code:
Cursor / Windsurf — same JSON shape as Claude Desktop in .cursor/mcp.json (or the equivalent Windsurf path).
Docker:
| Variable | Required | Default | Description |
|---|---|---|---|
SCF_API_KEY | Yes | — | API key from your self-hosted platform instance |
SCF_API_URL | Yes | — | Base URL of your self-hosted platform (e.g. http://localhost:8000). The former hosted default is decommissioned. |
Once connected, try asking your AI assistant:
More examples live in each per-domain doc under docs/tools/.
See SECURITY.md to report a vulnerability.
mcp-server-scf is a stateless connector — it stores no user data itself. All data flows directly between your MCP client and your own SCF Controls Platform instance, authenticated with your API key; nothing is sent to, or retained by, any third party. See the full privacy policy for details.
Contributions welcome! Please read CONTRIBUTING.md before submitting PRs.
This project follows the Contributor Covenant — see CODE_OF_CONDUCT.md. By participating, you are expected to uphold this code.
git checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)MIT — see LICENSE.