disaster_declarations
Pack: openfema · Endpoint: https://gateway.pipeworx.io/openfema/mcp
Look up FEMA disaster declarations (DisasterDeclarationsSummaries). Convenience filters for state (2-letter), year (fyDeclared, the federal fiscal year of declaration), incidentType (e.g. ‘Fire’, ‘Flood’, ‘Hurricane’, ‘Severe Storm’), and declarationType (‘DR’ major disaster, ‘EM’ emergency, ‘FM’ fire management). Returns the most recent first by default.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
state | string | no | 2-letter state/territory code, e.g. ‘CA’, ‘TX’. |
year | integer | no | Fiscal year declared (fyDeclared), e.g. 2024. |
incidentType | string | no | Incident type, e.g. ‘Fire’, ‘Flood’, ‘Hurricane’, ‘Severe Storm’. |
declarationType | string | no | ’DR’ (major disaster), ‘EM’ (emergency), or ‘FM’ (fire management). |
limit | integer | no | Max records (default 50, max 1000). |
orderby | string | no | OData $orderby, default ‘declarationDate desc’. |
Example call
curl -X POST https://gateway.pipeworx.io/openfema/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"disaster_declarations","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"openfema": {
"url": "https://gateway.pipeworx.io/openfema/mcp"
}
}
}
See Getting Started for client-specific install steps.