The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Aviation Weather MCP Server listing page.
Fetch METARs, TAFs, PIREPs, and domestic SIGMETs from the NWS Aviation Weather Center via MCP. STDIO or Streamable HTTP.
Public Hosted Server: https://aviation-weather.caseyjhand.com/mcp
Five tools covering aviation weather — station lookup, current observations, terminal forecasts, pilot reports, and active advisories:
| Tool | Description |
|---|---|
aviation_find_stations | Resolve airports and weather stations by identifier, bounding box, or US state. Returns ICAO/IATA/FAA IDs, coordinates, elevation, and available data types. |
aviation_get_metar | Get current weather observations (METARs) for one or more airports. Returns decoded wind, visibility, ceiling, present weather, temp/dewpoint, altimeter, cloud layers, flight category (VFR/MVFR/IFR/LIFR), and the raw METAR string. |
aviation_get_taf | Get Terminal Aerodrome Forecasts for one or more airports. Returns each forecast period with valid times, surface wind, low-level wind shear, visibility, decoded weather, cloud layers, and vertical visibility into a forecast obscuration, plus the raw TAF string. |
aviation_get_pireps | Get recent Pilot Reports near an airport or within a bounding box. Returns decoded turbulence, icing, and cloud reports with altitude, aircraft type, intensity, and the raw PIREP string. |
aviation_get_advisories | Get active domestic SIGMETs for a region. Returns hazard type (CONVECTIVE, TURBULENCE, ICING, IFR), severity, altitude range, valid period, polygon coordinates, and raw text. |
aviation_find_stationsResolve and discover weather stations by multiple search modes.
data_types (METAR, TAF, etc.) so agents can confirm what's available before queryingbbox is the named leverlimit (1–400) bounds how many stations a bbox or state search returns without changing the area searched, ordered by ICAO identifier ascending with identifier-less stations (buoys, mesonet sites) last — so the same query and limit return the same stations, and a sampled state leads with airports rather than with sites carrying no ID. A limited result says so separately from the cap — a limit withheld stations that were examined, a cap dropped stations that were never drawn — and both can be reported at once without either implying the other. It belongs to the area modes; supplying it alongside station_ids is rejected, since that mode already names the setaviation_get_metarFetch current or recent METAR observations (1–10 stations per call).
hours (1–12) is a lookback window rather than a row limit — every observation inside it is returned, so a half-hourly station yields two rows at the default of 1VV/// group) reads as a ceiling of undetermined height rather than as no ceilingsky_condition carries the group an observation states when it publishes no layer heights (CLR, SKC, CAVOK, or OVX for a VV/// obscuration), so an empty clouds array with nothing beside it reads as a sky the station did not report rather than as a clear oneMETAR (routine) from SPECI (special observation triggered by significant weather change)aviation_get_tafFetch Terminal Aerodrome Forecasts for 1–4 airports.
FM, TEMPO, BECMG) and probabilities-SHRA BR → light rain showers; mist), the same shape aviation_get_metar returnsVV002 → a 200 ft indefinite ceiling), rather than reading as a clear skysky_condition carries a forecast clear sky (SKC, NSC) whose group has no height to publish, so a period with no cloud element — a TEMPO or PROB group amending only visibility or weather — reads as leaving the prevailing forecast's cloud unchanged rather than as forecasting clearWS020/20040KT) is decoded to the shear-layer top and the forecast wind at that heightvalid_from / valid_to in ISO 8601 for straightforward time comparisonsaviation_get_pirepsSearch for recent Pilot Reports by station+radius or bounding box.
station_id + distance_nm (10–500 nm, 100 when omitted) for radial search around an airportbbox for geographic area search — useful for en-route corridor checks; distance_nm has no meaning here and is rejected alongside italtitude_min_ft / altitude_max_ft filters to isolate reports at cruise altitude, either bound alone or both (min must not exceed max). Both bounds together, spanning 6,000 ft or less, fit the API's own search width and are sent to it, so the band narrows the search rather than only trimming the result; a single bound or a wider span trims the result alonemin_intensity (lgt / mod / sev) restricts the search to reports carrying a turbulence or icing layer at that intensity or above — it selects reports, not layers, so a matching report still carries its lighter layerslimit (1–400) bounds how many reports come back without changing what is searched; it applies after the ordering by observation time, so it keeps the most recent. A limited result says so separately from the cap — a limit withheld reports that were examined, a cap dropped reports that were never drawn — and both can be reported at once without either implying the other. Selection is by recency alone, so pair it with min_intensity to bound a result by severity insteadaviation_get_advisoriesList currently active domestic SIGMETs.
advisory_type filter: sigmet or all (default) — both return the active SIGMET sethazard filter: CONVECTIVE, TURBULENCE, ICING, IFR — sent to the AWC endpoint's own hazard parameter, so the matching is done by AWC against however it spells the classbbox filter applied client-side (the AWC endpoint defines no bbox parameter; the tool filters by polygon overlap)advisory_type: airmet and the MTN OBSCN, SURFACE WIND, and LLWS hazards are rejected with guidance rather than answered with SIGMETs or an empty arraybbox — so a filter that needs broadening is not mistaken for quiet weather| Type | Name | Description |
|---|---|---|
| Prompt | aviation_preflight_brief | Structure a preflight weather briefing for a flight. Guides the LLM to call aviation_get_metar, aviation_get_taf, aviation_get_pireps, and aviation_get_advisories in sequence — split across as many calls as each tool's station limit requires — and synthesize a weather-risk summary with flight categories, active hazards, and the assessments it could not make. |
Takes departure_icao and destination_icao, plus optional alternates, departure_time, cruise_altitude, and route_waypoints. The last three each narrow one step: the departure time selects the TAF forecast period the briefing is read against, the cruise altitude bounds the PIREP search to a ±3,000 ft band, and the route waypoints (decimal-degree lat,lon pairs) become the advisory bbox. Omit any of them and the briefing still generates, naming the assessment it could not make. It reports weather risk rather than a go/no-go recommendation — that decision needs pilot, aircraft, and operational-minima context this server does not hold.
All resource data is reachable via tools. This server has no resources — all aviation weather data is time-sensitive (METARs valid ~1 hour, advisories minutes to hours) and unsuitable for stable-URI resources.
Built on @cyanheads/mcp-ts-core:
none, jwt, oauthAviation-weather-specific:
aviation-weather-service) with retry + exponential backoff for the keyless public endpointrawOb, rawTAF, rawAirSigmet) surfaced alongside decoded fields so agents have both layersinstructions field surfaces the "not an official briefing" safety disclaimer to all clients on initializeAgent-friendly output:
VFR/MVFR/IFR/LIFR) as a discriminated string field — agents can branch on it without parsing ceiling + visibilityreason fields and recovery hints (e.g., "Verify ICAO IDs with aviation_find_stations")aviation_preflight_brief prompt encodes the correct METAR → TAF → PIREPs → advisories briefing sequence that agents frequently get wrong by omitting steps, chunks each step to the station limit the tool actually enforces, and names the assessments it could not make instead of implying a complete pictureA public hosted instance is available at https://aviation-weather.caseyjhand.com/mcp. Add it to your MCP client configuration:
Add the following to your MCP client configuration file.
Or with npx (no Bun required):
Or with Docker:
For Streamable HTTP, set the transport and start the server:
| Variable | Description | Default |
|---|---|---|
AWC_BASE_URL | Base URL for the NWS AWC Data API. | https://aviationweather.gov/api/data |
AWC_TIMEOUT_MS | Per-request timeout in milliseconds (1000–60000). | 10000 |
MCP_TRANSPORT_TYPE | Transport: stdio or http. | stdio |
MCP_HTTP_PORT | Port for HTTP server. | 3010 |
MCP_SESSION_MODE | HTTP session handling: auto (resolves to stateful), stateful, or stateless. The shipped .env.example and Docker image pin stateless — no tool here needs a multi-round-trip input. | stateless |
MCP_AUTH_MODE | Auth mode: none, jwt, or oauth. | none |
MCP_LOG_LEVEL | Log level (RFC 5424). | info |
OTEL_ENABLED | Enable OpenTelemetry instrumentation. | false |
See .env.example for the full list of optional overrides.
Build and run:
Run checks and tests:
The Dockerfile defaults to HTTP transport, stateless session mode, and logs to /var/log/aviation-weather-mcp-server. OpenTelemetry peer dependencies are installed by default — build with --build-arg OTEL_ENABLED=false to omit them.
| Directory | Purpose |
|---|---|
src/index.ts | createApp() entry point — registers tools/prompts and inits services. |
src/config | Server-specific env var parsing (AWC_BASE_URL, AWC_TIMEOUT_MS). |
src/services/aviation-weather | AWC Data API client — HTTP fetch, retry with exponential backoff, response normalization. |
src/mcp-server/tools | Tool definitions (*.tool.ts). |
src/mcp-server/prompts | Prompt definitions (*.prompt.ts). |
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/mcp-server/*/definitions/index.tsNot an official preflight briefing. Data from the AWC is informational only. Real flight planning requires an authorized source (e.g., Leidos/1800wxbrief.com). The server surfaces this disclaimer via its
instructionsfield sent on everyinitialize.
Issues and pull requests are welcome. Run checks and tests before submitting:
Apache-2.0 — see LICENSE for details.