
Connects Claude to FEMA's OpenFEMA API for querying disaster declarations, public assistance grants, housing aid, and NFIP flood insurance claims. Eight tools cover the main datasets: search disasters by state, incident type, or date range; fetch designated areas and funded projects; pull housing assistance breakdowns by county and ZIP; and query NFIP claims with optional DuckDB spillover for SQL analytics on large result sets. When NFIP queries exceed the inline cap, results land in a DataCanvas table you can aggregate and filter with standard SQL. Generic OData query tool included for datasets the convenience wrappers don't cover. Useful for journalists, researchers, and anyone tracking federal disaster response or flood insurance payouts.
Query FEMA disaster declarations, public assistance grants, housing aid, and NFIP flood insurance claims via MCP. STDIO or Streamable HTTP.
Public Hosted Server: https://fema.caseyjhand.com/mcp
Federal disaster recovery data from FEMA's OpenFEMA API — disaster declarations, public assistance grants, individual housing assistance, and NFIP flood insurance claims. Search declarations by state or incident, drill into public assistance and housing assistance by disaster number, and run SQL analytics over large NFIP result sets via DataCanvas. Runs as a stdio process, a local Streamable HTTP server, or the public hosted endpoint above.
| Tool | Description |
|---|---|
fema_search_disasters | Search federal disaster declarations by state, incident type, declaration type, date range, and county |
fema_get_disaster | Fetch all designated-area records for a specific disaster by disaster number |
fema_get_public_assistance | Public assistance funded projects for a disaster or state — where federal recovery money went |
fema_get_housing_assistance | Individual assistance housing data for a disaster — owner and renter breakdowns by county/ZIP |
fema_search_nfip | NFIP flood insurance claims for a state, county, or ZIP, with optional DataCanvas spillover for SQL analytics |
fema_dataframe_describe | List columns and row counts for DataCanvas tables staged by fema_search_nfip |
fema_dataframe_query | Run a SELECT query against a DataCanvas table staged by fema_search_nfip |
fema_dataframe_drop | Remove a staged DataCanvas table or view — opt-in, absent from tools/list by default |
fema_query_dataset | Generic OData query against any OpenFEMA v2 dataset — escape hatch for datasets the convenience tools don't cover |
fema_dataframe_drop is registered only when FEMA_ENABLE_CANVAS_DROP=true; the other eight tools are always advertised.
| Resource | Description |
|---|---|
fema://disaster/{disasterNumber} | Summary for a specific FEMA disaster declaration — title, state, incident type, programs, incident period |
All resource data is also reachable via tools. Use fema_get_disaster for the same data with pagination and full designated-area detail.
fema_search_disasters toolstate (2-letter code), incident_type (substring match), declaration_type (DR/EM/FM), date_from/date_to (declaration date range), county (substring); paginated via limit (1–1000, default 50) / offsetdesignated_area_count and program flags (ia_declared/pa_declared/hm_declared)total_area_rows exceeds 10,000, unique-declaration totals are lower boundsinvalid_state, no_resultsfema_get_disaster tooldisaster_number (positive integer), obtained from fema_search_disastersnot_found rather than a raw API type-mismatch errorfema_get_public_assistance tooldisaster_number or state — at least one; optional county substring filter; paginated via limit (1–1000, default 100) / offsetinvalid_state, missing_filter (neither disaster_number nor state given), no_resultsfema_get_housing_assistance tooldisaster_number (required), optional state filter, type (owners/renters/both, default both); paginated via limit (1–1000, default 100) / offsetowners and renters arrays — registrations, approved amounts, and repair/rental/other-needs breakdowns by county and ZIPinvalid_state, no_results (IA housing data can take weeks to appear after a declaration)fema_search_nfip toolstate is required — the unfiltered NFIP Claims dataset is 2.7M rows; optional county_code (5-digit FIPS or a bare 3-digit code, auto-prefixed with the state FIPS), zip_code, year_from/year_to; inline preview capped at limit (1–10000, default 1000)CANVAS_PROVIDER_TYPE=duckdb is set and results exceed the 100,000-character inline preview budget, the matching set spills to a DataCanvas table (up to 50,000 rows) and the response carries canvas_id/canvas_table; truncated: true marks a partial stage at that caplimitinvalid_state, no_resultsfema_dataframe_describe toolAll four canvas inputs (fema_search_nfip, fema_dataframe_describe, fema_dataframe_query, and fema_dataframe_drop) require a server-issued 10-character URL-safe ID matching [A-Za-z0-9_-]{10} when supplied. Omit it on the first NFIP search.
canvas_id from a fema_search_nfip responsecanvas_not_found, canvas_unavailable (DataCanvas not enabled on this deployment)fema_dataframe_query toolcanvas_id plus a single SQL query; only SELECT statements are permitted — DDL, DML, COPY, and file-reading functions are blockedtruncated/shown/cap enrichment fields with LIMIT/OFFSET paging guidancecanvas_not_found, canvas_unavailable, invalid_query, sql_execution_error (use TRY_CAST or filter incompatible values)fema_dataframe_drop tooltools/list) unless FEMA_ENABLE_CANVAS_DROP=truecanvas_id and the exact table_name from fema_dataframe_describedropped: false when the name doesn't existcanvas_not_found, canvas_unavailablefema_query_dataset tooldataset (case-sensitive OpenFEMA v2 entity name), optional raw OData filter/select/orderby, limit (1–10000, default 100) / offsetFimaNfipPolicies, IndividualAssistanceHousingRegistrantsLargeDisasters); for NFIP Policies use propertyState (not state) and always include a county or ZIP filter to avoid timeoutunknown_dataset (name not recognized), invalid_filter (OData syntax error)fema://disaster/{disasterNumber} resourcedisasterNumber as a stringprograms_declared array, and designated_area_countfema_get_disasterBuilt on @cyanheads/mcp-ts-core: stdio and Streamable HTTP transports, pluggable auth (none / jwt / oauth), swappable storage (in-memory, filesystem, Supabase, Cloudflare KV/R2/D1), structured logging with optional OpenTelemetry tracing.
OpenFEMA-specific:
%24-prefixed OData parameter encoding (an Akamai requirement) and structured error classification distinguishing JSON 400 responses from HTML Drupal error pagesDisasterDeclarationsSummaries — one row per designated area collapsed to declaration-level summaries with designated_area_countstate filter is required to prevent unbounded 2.7M-row fetchesAgent-friendly output:
invalid_state, no_results, missing_filter, unknown_dataset, invalid_filter, canvas_unavailable — with recovery hints telling agents the concrete next stepdesignated_area_count on search results so agents know whether to drill in with fema_get_disaster without having to fetch the full record firstA public instance is available at https://fema.caseyjhand.com/mcp — no installation required. Point any MCP client at it via Streamable HTTP:
{
"mcpServers": {
"fema-mcp-server": {
"type": "streamable-http",
"url": "https://fema.caseyjhand.com/mcp"
}
}
}
Add the following to your MCP client configuration file.
{
"mcpServers": {
"fema-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/fema-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}
Or with npx (no Bun required):
{
"mcpServers": {
"fema-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/fema-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}
Or with Docker:
{
"mcpServers": {
"fema-mcp-server": {
"type": "stdio",
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "MCP_TRANSPORT_TYPE=stdio",
"ghcr.io/cyanheads/fema-mcp-server:latest"
]
}
}
}
For Streamable HTTP, set the transport and start the server:
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
# Server listens at http://localhost:3010/mcp
To enable DuckDB-backed SQL analytics for NFIP Claims:
{
"mcpServers": {
"fema-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/fema-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"CANVAS_PROVIDER_TYPE": "duckdb"
}
}
}
}
CANVAS_PROVIDER_TYPE=duckdb to enable SQL analytics over large NFIP Claims result sets.git clone https://github.com/cyanheads/fema-mcp-server.git
cd fema-mcp-server
bun install
cp .env.example .env
# edit .env — no required vars, but CANVAS_PROVIDER_TYPE=duckdb enables SQL analytics
All configuration is validated at startup via Zod schemas in src/config/server-config.ts. Key environment variables:
| Variable | Description | Default |
|---|---|---|
FEMA_BASE_URL | Override the OpenFEMA API base URL. | https://www.fema.gov/api/open/v2 |
FEMA_REQUEST_TIMEOUT_MS | Total budget in milliseconds for one upstream exchange, including response body, retries, and backoff. NFIP county queries can be slow. | 30000 |
CANVAS_PROVIDER_TYPE | Set to duckdb to enable DataCanvas for NFIP Claims analytics. Without it, fema_search_nfip inlines results up to the cap. | — |
FEMA_ENABLE_CANVAS_DROP | Enable the destructive fema_dataframe_drop tool for removing staged tables and views. | false |
MCP_TRANSPORT_TYPE | Transport: stdio or http. | stdio |
MCP_SESSION_MODE | Session mode: auto, stateful, or stateless. Overrides this server's explicit stateless default. The framework schema default auto resolves to stateful. | stateless |
MCP_HTTP_PORT | HTTP server port. | 3010 |
MCP_AUTH_MODE | Auth mode: none, jwt, or oauth. | none |
MCP_LOG_LEVEL | Log level (debug, info, warning, error, etc.). | info |
LOGS_DIR | Directory for log files (Node.js only). | <project-root>/logs |
OTEL_ENABLED | Enable OpenTelemetry instrumentation. | false |
See .env.example for the full list of optional overrides.
Build and run:
# One-time build
bun run rebuild
# Run the built server
bun run start:stdio
# or
bun run start:http
Run checks and tests:
bun run devcheck # Lint, format, typecheck, security
bun run test # Vitest test suite
bun run lint:mcp # Validate MCP definitions against spec
docker build -t fema-mcp-server .
docker run --rm -e MCP_TRANSPORT_TYPE=stdio fema-mcp-server
The Dockerfile defaults to HTTP transport, stateless session mode, and logs to /var/log/fema-mcp-server. OpenTelemetry peer dependencies are installed by default — build with --build-arg OTEL_ENABLED=false to omit them. Production dependencies, including the DuckDB native binding, are installed directly in the runtime stage without lifecycle scripts.
| Directory | Purpose |
|---|---|
src/index.ts | createApp() entry point — registers tools/resources and inits services. |
src/config | Server-specific environment variable parsing and validation with Zod. |
src/mcp-server/tools | Tool definitions (*.tool.ts) — one file per tool. |
src/mcp-server/resources | Resource definitions (*.resource.ts). |
src/services/openfema | OpenFEMA REST API client — OData param builder, response parser, error classifier, retry wrapper. |
src/services/canvas | DataCanvas integration — DuckDB spillover for large NFIP result sets. |
tests/ | Unit and integration tests mirroring src/. |
See CLAUDE.md for development guidelines and architectural rules. The short version:
try/catch in tool logicctx.log for request-scoped logging, ctx.state for tenant-scoped storagesrc/index.tsIssues are welcome. Run checks and tests before submitting:
bun run devcheck
bun run test
Data is provided by the OpenFEMA API, a free public API maintained by the Federal Emergency Management Agency. Usage is subject to OpenFEMA Terms and Conditions.
This product uses the Federal Emergency Management Agency's OpenFEMA API, but is not endorsed by FEMA. The Federal Government or FEMA cannot vouch for the data or analyses derived from these data after the data have been retrieved from the Agency's website(s).
When citing OpenFEMA datasets in research or publications, use the format FEMA specifies:
Federal Emergency Management Agency (FEMA), OpenFEMA Dataset: <name>. Retrieved from <URL> on <date>.
Apache-2.0 — see LICENSE for details.
MCP_LOG_LEVELdefault: infoSets the minimum log level for output (e.g., 'debug', 'info', 'warn').
MCP_HTTP_HOSTdefault: 127.0.0.1The hostname for the HTTP server.
MCP_HTTP_PORTdefault: 3010The port to run the HTTP server on.
MCP_HTTP_ENDPOINT_PATHdefault: /mcpThe endpoint path for the MCP server.
MCP_AUTH_MODEdefault: noneAuthentication mode to use: 'none', 'jwt', or 'oauth'.