sibfly_coverage
Pack: sibfly · Endpoint: https://gateway.pipeworx.io/sibfly/mcp
FREE preflight: does SibFly have satellite ground-motion coverage for this US address, and what would a full report cost? No key required. Returns coverage (true/false), confidence, and would_cost_usd. Use this before sibfly_ground_motion to check a property is covered without spending credits.
Example call
Arguments
{
"address": "1600 Pennsylvania Avenue NW, Washington, DC 20500"
}
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_coverage","arguments":{"address":"1600 Pennsylvania Avenue NW, Washington, DC 20500"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sibfly_coverage', {
"address": "1600 Pennsylvania Avenue NW, Washington, DC 20500"
});
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.