Skip to content
VS Code

EmbedEarth (E2) for VS Code

io.github.paulwxnter/mcp

Open-source Google Maps Platform alternative for agents: search, route, map, geocode, and compute.

client:VS Code transport:stdio runtime:npm

Install EmbedEarth (E2) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "e2-api-key",
      "description": "E2_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "route-url",
      "description": "ROUTE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@embedearth/mcp"
      ],
      "env": {
        "E2_API_KEY": "${input:e2-api-key}",
        "ROUTE_URL": "${input:route-url}"
      }
    }
  }
}

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

EmbedEarth (E2) in other clients