Skip to content
VS Code

geolocation mcp for VS Code

io.github.wtronk/geolocation-mcp

Geolocation tools (reverse geocoding, ip lookup, etc) using Jeleo Geolocation API

client:VS Code transport:stdio runtime:oci

Install geolocation mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "your-api-key",
      "description": "YOUR_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "jeleo-api-url",
      "description": "JELEO_API_URL",
      "password": true
    }
  ],
  "servers": {
    "geolocation-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wtronk/geolocation-mcp:v1.0.0"
      ],
      "env": {
        "YOUR_API_KEY": "${input:your-api-key}",
        "JELEO_API_URL": "${input:jeleo-api-url}"
      }
    }
  }
}

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

geolocation mcp in other clients