sibfly_ground_motion

Pack: sibfly · Endpoint: https://gateway.pipeworx.io/sibfly/mcp

Satellite-measured GROUND MOTION for a US address — is the land under a property SINKING or rising (subsidence / uplift / heave), in mm/year and in/year, from NASA Sentinel-1 InSAR. Use for property foundation risk, land subsidence, sinkhole/settlement concern, real-estate due diligence, or “is this address sinking?”. Returns vertical velocity (mm/yr + in/yr) with uncertainty, seasonal amplitude, total motion, a plain-language assessment, confidence, and provenance. With a SibFly key (_apiKey) this is a full paid report ($0.40 from your credits); without a key it returns a FREE teaser (coverage + confidence + would_cost_usd). Out-of-coverage addresses return coverage:false and are never billed.

Parameters

NameTypeRequiredDescription
include_timeseriesbooleannoIf true, embed the full motion history (per-date measurements) in the same report.
briefbooleannoIf true, add a short plain-English narration of the result.

Example call

Arguments

{
  "address": "1600 Pennsylvania Avenue NW, Washington, DC 20500",
  "_apiKey": "your-sibfly-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/sibfly/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sibfly_ground_motion","arguments":{"address":"1600 Pennsylvania Avenue NW, Washington, DC 20500","_apiKey":"your-sibfly-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('sibfly_ground_motion', {
  "address": "1600 Pennsylvania Avenue NW, Washington, DC 20500",
  "_apiKey": "your-sibfly-api-key"
});

More examples

{
  "address": "123 Main Street, San Francisco, CA 94105",
  "include_timeseries": true,
  "brief": true,
  "_apiKey": "your-sibfly-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "sibfly": {
      "url": "https://gateway.pipeworx.io/sibfly/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 22, 2026