mcp server scf for VS Code
app.scfcontrolsplatform/mcp-server-scf
MCP server for the SCF Controls Platform — 187 tools for controls, evidence, risk, and TPRM.
client:VS Code
transport:stdio
runtime:npm
Install mcp server scf in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "scf-api-key",
"description": "SCF_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "scf-api-url",
"description": "SCF_API_URL",
"password": true
}
],
"servers": {
"mcp-server-scf": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-server-scf"
],
"env": {
"SCF_API_KEY": "${input:scf-api-key}",
"SCF_API_URL": "${input:scf-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs