Skip to content
VS Code

RiskRover MCP for VS Code

io.github.be-sure-consulting/riskrover-mcp

Draft PBS and quality assignments, assess test evidence, and submit guarded RiskRover updates.

client:VS Code transport:stdio runtime:npm

Install RiskRover MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "riskrover-api-token",
      "description": "RISKROVER_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "riskrover-project-id",
      "description": "RISKROVER_PROJECT_ID",
      "password": true
    }
  ],
  "servers": {
    "riskrover-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "riskrover-mcp-server"
      ],
      "env": {
        "RISKROVER_API_TOKEN": "${input:riskrover-api-token}",
        "RISKROVER_PROJECT_ID": "${input:riskrover-project-id}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

RiskRover MCP in other clients