Skip to content
VS Code

RIPE Atlas for VS Code

io.github.jrelph/ripe-atlas

RIPE Atlas network measurements — ping, traceroute, DNS, TLS, HTTP, NTP, and probes

client:VS Code transport:stdio runtime:npm

Install RIPE Atlas in VS Code

.vscode/mcp.json

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

RIPE Atlas in other clients