Skip to content
VS Code

rootpilot ssh diagnose for VS Code

io.github.easton-ou/rootpilot-ssh-diagnose

Read-only SSH server diagnostics via a fixed 38-command whitelist; secrets redacted, no write path.

client:VS Code transport:stdio runtime:npm

Install rootpilot ssh diagnose in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rp-hosts",
      "description": "RP_HOSTS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rp-probe-url",
      "description": "RP_PROBE_URL",
      "password": true
    }
  ],
  "servers": {
    "rootpilot-ssh-diagnose": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@rootpilot/mcp-ssh-diagnose"
      ],
      "env": {
        "RP_HOSTS": "${input:rp-hosts}",
        "RP_PROBE_URL": "${input:rp-probe-url}"
      }
    }
  }
}

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

rootpilot ssh diagnose in other clients