Skip to content
VS Code

security orchestra for VS Code

io.github.robotfleet-hq/security-orchestra

Multi-agent MCP platform for data centers and critical power.

client:VS Code transport:stdio runtime:npm

Install security orchestra in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "security-orchestra-api-key",
      "description": "SECURITY_ORCHESTRA_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "security-orchestra": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@securityorchestra/security-orchestra"
      ],
      "env": {
        "SECURITY_ORCHESTRA_API_KEY": "${input:security-orchestra-api-key}"
      }
    }
  }
}

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

security orchestra in other clients