Skip to content
VS Code

landbenchmark mcp for VS Code

io.github.winds3753/landbenchmark-mcp

Satellite land due-diligence: a green/caution/walk-away verdict with cited signals for any parcel.

client:VS Code transport:stdio runtime:npm

Install landbenchmark mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "terrain-api-key",
      "description": "TERRAIN_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "terrain-base-url",
      "description": "TERRAIN_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "landbenchmark-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "landbenchmark-mcp"
      ],
      "env": {
        "TERRAIN_API_KEY": "${input:terrain-api-key}",
        "TERRAIN_BASE_URL": "${input:terrain-base-url}"
      }
    }
  }
}

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

landbenchmark mcp in other clients