Skip to content
VS Code

apogeoapi mcp for VS Code

com.apogeoapi/apogeoapi-mcp

Geographic data API: 250+ countries, 150K+ cities, IP geolocation, 161 live FX rates.

client:VS Code transport:stdio runtime:npm

Install apogeoapi mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apogeoapi-key",
      "description": "APOGEOAPI_KEY",
      "password": true
    }
  ],
  "servers": {
    "apogeoapi-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@apogeoapi/mcp"
      ],
      "env": {
        "APOGEOAPI_KEY": "${input:apogeoapi-key}"
      }
    }
  }
}

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

apogeoapi mcp in other clients