-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmithery.yaml
More file actions
35 lines (35 loc) · 1.15 KB
/
Copy pathsmithery.yaml
File metadata and controls
35 lines (35 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: mcp-server-scf
description: |
SCF Controls Platform MCP server — 135 tools that give AI assistants
access to 1,451 security controls, 354+ framework mappings
(NIST 800-53, ISO 27001, SOC 2, FedRAMP, GDPR), evidence tracking,
a 5x5 risk register, and third-party vendor risk management.
homepage: https://github.com/MarkAC007/mcp-server-scf
license: MIT
startCommand:
type: stdio
configSchema:
type: object
title: SCF Controls Platform configuration
properties:
SCF_API_KEY:
type: string
title: API key
description: Your SCF platform API key (scf_ prefix). Generate at Settings > API Keys.
format: password
SCF_API_URL:
type: string
title: Platform URL
description: "Base URL of your self-hosted SCF Controls Platform instance (e.g. http://localhost:8000). The platform is self-hosted — there is no hosted default."
required:
- SCF_API_KEY
- SCF_API_URL
commandFunction: |-
(config) => ({
command: "node",
args: ["build/index.js"],
env: {
SCF_API_KEY: config.SCF_API_KEY,
SCF_API_URL: config.SCF_API_URL
}
})