perilpulse_risk
Pack: perilpulse · Endpoint: https://gateway.pipeworx.io/perilpulse/mcp
Multi-peril risk scores (flood, wildfire, wind, hail, crime…) for a property address. Returns A–F grades / 0–100 scores across 25+ hazard types (flood, wildfire, earthquake, wind, hail, tornado, lightning, storm surge, crime, sinkhole, and more) — HazardHub-style property risk for insurance underwriting & due diligence. Example: perilpulse_risk({ street: “123 Main St”, city: “Austin”, state: “TX”, zip: “78701”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
street | string | yes | Street address, e.g. “123 Main St” (alias: address) |
city | string | yes | City, e.g. “Austin” |
state | string | yes | Two-letter state code, e.g. “TX” |
zip | string | yes | ZIP code, e.g. “78701” |
_apiKey | string | yes | PerilPulse API key (sign up at perilpulse.com — 3 free queries, then pay-as-you-go). Sent as Authorization: Token token= |
Example call
Arguments
{
"street": "123 Main St",
"city": "Austin",
"state": "TX",
"zip": "78701",
"_apiKey": "your-perilpulse-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/perilpulse/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"perilpulse_risk","arguments":{"street":"123 Main St","city":"Austin","state":"TX","zip":"78701","_apiKey":"your-perilpulse-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('perilpulse_risk', {
"street": "123 Main St",
"city": "Austin",
"state": "TX",
"zip": "78701",
"_apiKey": "your-perilpulse-api-key"
});
More examples
{
"street": "456 Flood Lane",
"city": "Miami",
"state": "FL",
"zip": "33101",
"_apiKey": "your-perilpulse-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"perilpulse": {
"url": "https://gateway.pipeworx.io/perilpulse/mcp"
}
}
}
See Getting Started for client-specific install steps.