Fema Nfhl
liveReferenceFEMA National Flood Hazard Layer (NFHL) MCP
Tools
nfhl_flood_zone_at_pointReturns the effective FEMA FIRM flood zone at a coordinate — zone code, subtype, Special Flood Hazard Area flag and base elevation.
No parameters required.
Try it
nfhl_queryQuery any layer of the FEMA National Flood Hazard Layer with an ArcGIS WHERE clause and optional bounding box — flood hazard zones, base flood elevations, floodways, LOMRs and LOMAs, FIRM panels with
No parameters required.
Try it
nfhl_layersList every layer in the FEMA National Flood Hazard Layer MapServer with its id, name and geometry type, plus a plain-English guide to the layers that matter (flood hazard zones, base flood elevations,
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/fema-nfhl/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/fema-nfhl/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"nfhl_flood_zone_at_point","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("nfhl_flood_zone_at_point", {});// Or ask in plain English:
const answer = await px.ask("fema national flood hazard layer (nfhl) mcp");