Skip to content
VS Code

probeops mcp server for VS Code

io.github.kumarprobeops/probeops-mcp-server

Network diagnostics from 6 global regions. SSL, DNS, ping, whois, traceroute, port scan, latency.

client:VS Code transport:stdio runtime:npm

Install probeops mcp server in VS Code

.vscode/mcp.json

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

probeops mcp server in other clients