Skip to content
VS Code

Terranode Geospatial API for VS Code

io.github.terranode-co/mcp-server-terranode

Point-in-polygon, nearest feature, spatial join, and distance tools for US geospatial datasets

client:VS Code transport:stdio runtime:npm

Install Terranode Geospatial API in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "terranode-api-key",
      "description": "TERRANODE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "terranode-api-url",
      "description": "TERRANODE_API_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-server-terranode": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@terranode-co/mcp-server"
      ],
      "env": {
        "TERRANODE_API_KEY": "${input:terranode-api-key}",
        "TERRANODE_API_URL": "${input:terranode-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

Terranode Geospatial API in other clients