Skip to content
VS Code

turbopentest for VS Code

io.github.integsec/turbopentest

AI-powered penetration testing. Launch scans, review findings, download reports.

client:VS Code transport:stdio runtime:npm

Install turbopentest in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "turbopentest-api-key",
      "description": "TURBOPENTEST_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "turbopentest-api-url",
      "description": "TURBOPENTEST_API_URL",
      "password": true
    }
  ],
  "servers": {
    "turbopentest": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@turbopentest/mcp-server"
      ],
      "env": {
        "TURBOPENTEST_API_KEY": "${input:turbopentest-api-key}",
        "TURBOPENTEST_API_URL": "${input:turbopentest-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

turbopentest in other clients