Skip to content
VS Code

Google Maps MCP Server for VS Code

io.github.cablate/google-map

18 Google Maps tools for AI agents — geocode, search, directions, weather, and more.

client:VS Code transport:stdio runtime:npm

Install Google Maps MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "google-maps-api-key",
      "description": "GOOGLE_MAPS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-maps-enabled-tools",
      "description": "GOOGLE_MAPS_ENABLED_TOOLS",
      "password": true
    }
  ],
  "servers": {
    "google-map": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@cablate/mcp-google-map"
      ],
      "env": {
        "GOOGLE_MAPS_API_KEY": "${input:google-maps-api-key}",
        "GOOGLE_MAPS_ENABLED_TOOLS": "${input:google-maps-enabled-tools}"
      }
    }
  }
}

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

Google Maps MCP Server in other clients