Skip to content
VS Code

gagelink for VS Code

io.github.adeniyikayodee/gagelink

River level, streamflow, floods and basins from USGS, NOAA, Hub'Eau, UK Environment Agency, SWOT

client:VS Code transport:stdio runtime:pypi

Install gagelink in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gagelink-api-key",
      "description": "GAGELINK_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "gagelink": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "gagelink"
      ],
      "env": {
        "GAGELINK_API_KEY": "${input:gagelink-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

gagelink in other clients