🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

landbenchmark-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

landbenchmark-mcp

MCP server for LandBenchmark — satellite land due-diligence. Exposes an analyze_parcel tool so AI agents can pull a green/caution/walk-away verdict with cited signals for any parcel.

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

landbenchmark-mcp

An MCP server that lets AI agents run satellite land due-diligence through LandBenchmark. It exposes one tool, analyze_parcel, that returns a green / caution / walk-away verdict with cited signals (flooding, slope & buildability, soil, hazards, access) for any parcel.

Why

When someone asks their AI assistant "is this land any good to buy?", the agent can call LandBenchmark and answer with observed, cited satellite data instead of guessing.

Setup

  • Get an API key at landbenchmark.com/accountAPI keys.
  • Add the server to your MCP client config:
{
  "mcpServers": {
    "terrain": {
      "command": "npx",
      "args": ["-y", "landbenchmark-mcp"],
      "env": {
        "TERRAIN_API_KEY": "tk_live_...",
        "TERRAIN_BASE_URL": "https://www.landbenchmark.com"
      }
    }
  }
}

Both env vars are required. (TERRAIN_* is the internal engine name — LandBenchmark runs on the Terrain analysis engine.) TERRAIN_BASE_URL has no default on purpose: every request sends your API key to that host in an Authorization header, so the server refuses to start rather than guess where it goes. It also refuses to send a key over plain http:// to anything but localhost.

Works with any MCP-capable client — Claude Desktop, Claude Code, and agent frameworks.

Tool: analyze_parcel

ParamTypeNotes
lat, lonnumberParcel centre (WGS84). Provide these or geometry.
geometryGeoJSONPolygon or Point (alternative to lat/lon).
labelstringOptional parcel name.
mode"lite" | "full"lite (default) ≈ 1 min; full = deep multi-year satellite report ≈ 3–4 min.

Returns a plain-text verdict summary with the flagged signals and a link to the full report.

Build

npm install
npm run build   # → dist/index.js
npm test        # verifies the API-key safety guard

Informational only — not a survey, flood determination, or a substitute for on-site inspection and professional advice.

Keywords

mcp

FAQs

Package last updated on 30 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts