sibfly_timeseries

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

Historical ground-motion time series for a US address — the per-date satellite measurements of vertical displacement over time (how the land has moved, month by month). Use to see the TREND of subsidence/uplift, not just the current velocity. series_type “measured” = real per-pass observations (premium frames); “modeled” = fitted trend on real acquisition dates. Needs a SibFly key for the full series ($0.40); keyless returns a coverage teaser.

Parameters

NameTypeRequiredDescription
series_typestringno”measured” (real per-pass observations) or “modeled” (fitted trend). Default measured.

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_timeseries","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_timeseries', {
  "address": "1600 Pennsylvania Avenue NW, Washington, DC 20500",
  "_apiKey": "your-sibfly-api-key"
});

More examples

{
  "address": "123 Main Street, San Francisco, CA 94105",
  "series_type": "measured",
  "_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