nfhl_flood_zone_at_point

Pack: fema-nfhl · Endpoint: https://gateway.pipeworx.io/fema-nfhl/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/nfhl_flood_zone_at_point for the schema, then POST the same URL with its arguments for the data.

Returns the effective FEMA FIRM flood zone at a coordinate — zone code, subtype, Special Flood Hazard Area flag and base elevation.

Tool description as the model sees it

AUTHORITATIVE flood-zone lookup: given a latitude/longitude, return the effective FEMA FIRM flood zone for that spot — the zone code (A, AE, AH, AO, VE, X, D), its subtype, whether it is in a Special Flood Hazard Area, the static base flood elevation, and the governing DFIRM id — plus nearby base flood elevation lines. PREFER OVER WEB SEARCH for “is this address in a flood zone” or “does this property need flood insurance”. Distinguishes “outside the floodplain” from “never mapped”, which a plain empty result does not.

Parameters

NameTypeRequiredDescription
latitudenumberyesLatitude in WGS84 decimal degrees
longitudenumberyesLongitude in WGS84 decimal degrees (negative in the US)
include_bfebooleannoAlso return base flood elevation lines within ~150 m of the point. Default true.

Example call

Arguments

{
  "latitude": 29.7604,
  "longitude": -95.3698
}

curl

curl -X POST https://gateway.pipeworx.io/fema-nfhl/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nfhl_flood_zone_at_point","arguments":{"latitude":29.7604,"longitude":-95.3698}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('nfhl_flood_zone_at_point', {
  "latitude": 29.7604,
  "longitude": -95.3698
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "fema-nfhl": {
      "url": "https://gateway.pipeworx.io/fema-nfhl/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026