mcp-server-scf

mcp-server-scf

Enables AI agents to interact with the SCF Controls Platform for security compliance, including browsing controls, tracking implementation, managing evidence, assessing risks, and monitoring vendors via natural language.

Category
Visit Server

README

<p align="center"> <a href="https://scfcontrolsplatform.com/"> <img src="https://raw.githubusercontent.com/MarkAC007/mcp-server-scf/main/docs/assets/banner.png" alt="SCF Controls Platform โ€” MCP server for security compliance, frameworks, and risk management for AI agents. Maintained by ComplianceGenie.io." width="100%"> </a> </p>

mcp-server-scf

<!-- Build & Security -->

CI Security OpenSSF Scorecard Socket.dev

<!-- Package & License -->

npm version npm downloads install size License: MIT MCP

<!-- Registries & Marketplaces -->

MCP Registry smithery badge

<!-- Tech Stack -->

TypeScript Node.js

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


Overview

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.

88 tools across 8 domains โ€” click through for full parameter tables and example prompts:

Domain Tools Description
Catalog 6 Browse 1,451 controls, 354+ frameworks, 5,736 assessment objectives
Control Scoping 6 Track implementation status across an 8-state workflow
Evidence 26 Manage evidence collection, validation, maturity scoring, windowed AI assessments, and control-composite rollups
Risk Management 12 5x5 risk matrix, risk register, custom risks and control mapping
Vendor Risk (TPRM) 11 Vendor registry, AI security research, async AI assessments (replaces DPSIA)
Organization 7 Users, orgs, audit trail, work queue, notifications
Capabilities 14 KSI themes, scorecards, evidence posture, systems inventory, system catalog + AI recipes
Webhooks 6 Webhook endpoints, delivery logs, secret rotation

Try it with MCP Inspector

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:

npx @modelcontextprotocol/inspector npx -y mcp-server-scf

Inspector opens on http://localhost:6274 and connects to mcp-server-scf over stdio. You'll see all 88 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.


Quick Start

1. Self-host the platform & get an API key

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:

  1. Set an 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.
  2. Note your instance's API URL โ€” 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).

2. Install โ€” one-click

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:

Install in Cursor

After install, edit the pre-filled SCF_API_URL to point at your instance โ€” there is no hosted default.

Smithery โ€” managed hosted deployment:

Try on Smithery

Prefer to edit config by hand, or on a client without a deeplink (Windsurf, Docker)? See 3. Manual config below.

Claude Desktop Extension (.mcpb)

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:

  1. Download mcp-server-scf-<version>.mcpb from the latest GitHub release.
  2. Double-click the file (or drag it onto Claude Desktop โ†’ Settings โ†’ Extensions).
  3. When prompted, paste your scf_โ€ฆ API key. It's stored in your OS keychain, not in a config file.
  4. Claude Desktop restarts the server and all 88 tools are available.

To uninstall or update the API key later: Settings โ†’ Extensions โ†’ SCF Controls Platform โ†’ Configure.

3. Manual config

Claude Desktop โ€” edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "scf": {
      "command": "npx",
      "args": ["-y", "mcp-server-scf"],
      "env": {
        "SCF_API_KEY": "your_api_key_here",
        "SCF_API_URL": "http://localhost:8000"
      }
    }
  }
}

Claude Code:

claude mcp add scf -- npx -y mcp-server-scf
export SCF_API_KEY="your_api_key_here"
export SCF_API_URL="http://localhost:8000"

Cursor / Windsurf โ€” same JSON shape as Claude Desktop in .cursor/mcp.json (or the equivalent Windsurf path).

Docker:

{
  "mcpServers": {
    "scf": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "-e", "SCF_API_KEY", "-e", "SCF_API_URL", "markac007/mcp-server-scf"],
      "env": {
        "SCF_API_KEY": "scf_your_api_key_here",
        "SCF_API_URL": "https://scf.your-domain.example"
      }
    }
  }
}

Configuration

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.

Example Prompts

Once connected, try asking your AI assistant:

  • "What NIST 800-53 controls apply to access control?"
  • "Show me my organization's control implementation progress."
  • "List all critical vendors and their risk scores."
  • "Create a risk assessment for our cloud migration."
  • "What evidence do I need to collect for SOC 2 audit?"
  • "Show the 5x5 risk matrix for my organization."
  • "Run a DPSIA on our cloud provider vendor."

More examples live in each per-domain doc under docs/tools/.


Documentation


Security

  • API keys are never logged or included in error messages.
  • Keys are SHA-256 hashed server-side. Use HTTPS for any instance reachable beyond localhost.
  • Rate limiting: 100 req/min read, 20 req/min write.
  • Multi-tenant โ€” all operations scoped to your organization.
  • npm package published with provenance attestation via OIDC trusted publishing.
  • CI includes Gitleaks secret detection, CodeQL analysis, and Semgrep SAST.

See SECURITY.md to report a vulnerability.


Development

git clone https://github.com/MarkAC007/mcp-server-scf.git
cd mcp-server-scf
npm install
npm run build
npm run dev        # Watch mode
npm run lint       # ESLint
npm test           # Vitest

Testing with MCP Inspector

SCF_API_KEY=scf_your_key npx @modelcontextprotocol/inspector node build/index.js

Contributing

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.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

MIT โ€” see LICENSE.


Links

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured