Skip to content
VS Code

GeoEDGE MCP for VS Code

io.github.geoedge-git/geoedge-mcp

Geospatial analysis: vector and raster GIS operations, cartographic maps, spatial data access

client:VS Code transport:stdio runtime:pypi

Install GeoEDGE MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "geoedge-mcp-license-key",
      "description": "GEOEDGE_MCP_LICENSE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "geoedge-mcp-storage-path",
      "description": "GEOEDGE_MCP_STORAGE_PATH",
      "password": true
    }
  ],
  "servers": {
    "geoedge-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "geoedge-mcp"
      ],
      "env": {
        "GEOEDGE_MCP_LICENSE_KEY": "${input:geoedge-mcp-license-key}",
        "GEOEDGE_MCP_STORAGE_PATH": "${input:geoedge-mcp-storage-path}"
      }
    }
  }
}

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

GeoEDGE MCP in other clients