Skip to content
VS Code

Region Fetch for VS Code

dev.regionfetch/mcp

Fetch any public URL as a visitor in a chosen country, with a signed receipt of its origin.

client:VS Code transport:stdio runtime:npm

Install Region Fetch in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "region-fetch-wallet-private-key",
      "description": "REGION_FETCH_WALLET_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "region-fetch-max-payment",
      "description": "REGION_FETCH_MAX_PAYMENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "region-fetch-base-url",
      "description": "REGION_FETCH_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "region-fetch-payment-signature",
      "description": "REGION_FETCH_PAYMENT_SIGNATURE",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "regionfetch-mcp"
      ],
      "env": {
        "REGION_FETCH_WALLET_PRIVATE_KEY": "${input:region-fetch-wallet-private-key}",
        "REGION_FETCH_MAX_PAYMENT": "${input:region-fetch-max-payment}",
        "REGION_FETCH_BASE_URL": "${input:region-fetch-base-url}",
        "REGION_FETCH_PAYMENT_SIGNATURE": "${input:region-fetch-payment-signature}"
      }
    }
  }
}

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

Region Fetch in other clients