Fetch METARs, TAFs, PIREPs, and SIGMETs/AIRMETs from the NWS Aviation Weather Center via MCP. STDIO or Streamable HTTP.
- ✓Open-source license (Apache-2.0)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
git clone https://github.com/cyanheads/aviation-weather-mcp-server{
"mcpServers": {
"aviation-weather": {
"command": "node",
"args": ["/path/to/aviation-weather-mcp-server/dist/index.js"]
}
}
}MCP Servers overview
<div align="center">
<h1>@cyanheads/aviation-weather-mcp-server</h1>
<p><b>Fetch METARs, TAFs, PIREPs, and SIGMETs/AIRMETs from the NWS Aviation Weather Center via MCP. STDIO or Streamable HTTP.</b>
<div>5 Tools • 1 Prompt</div>
</p>
</div>
<div align="center">
[](./CHANGELOG.md) [](./LICENSE) [](https://github.com/users/cyanheads/packages/container/package/aviation-weather-mcp-server) [](https://modelcontextprotocol.io/) [](https://www.npmjs.com/package/@cyanheads/aviation-weather-mcp-server) [](https://www.typescriptlang.org/) [](https://bun.sh/)
</div>
<div align="center">
[](https://github.com/cyanheads/aviation-weather-mcp-server/releases/latest/download/aviation-weather-mcp-server.mcpb) [](https://cursor.com/en/install-mcp?name=aviation-weather-mcp-server&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBjeWFuaGVhZHMvYXZpYXRpb24td2VhdGhlci1tY3Atc2VydmVyIl19) [](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22aviation-weather-mcp-server%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40cyanheads%2Faviation-weather-mcp-server%22%5D%7D)
[](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
</div>
<div align="center">
**Public Hosted Server:** [https://aviation-weather.caseyjhand.com/mcp](https://aviation-weather.caseyjhand.com/mcp)
</div>
---
## Tools
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 ICAO ID, 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, 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, wind, visibility, weather codes, and cloud layers, 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 SIGMETs and AIRMETs for a region. Returns hazard type (CONVECTIVE, TURBULENCE, ICING, IFR, MTN OBSCN), severity, altitude range, valid period, polygon coordinates, and raw text. |
### `aviation_find_stations`
Resolve and discover weather stations by multiple search modes.
- Look up one or more stations by ICAO, IATA, or FAA ID (up to 20 IDs per call)
- Discover all stations within a geographic bounding box
- List stations for a US state via two-letter abbreviation (uses bbox + client-side state filter)
- Returns `data_types` (METAR, TAF, etc.) so agents can confirm what's available before querying
---
### `aviation_get_metar`
Fetch current or recent METAR observations (1–10 stations per call).
- `hours` parameter (1–12) returns observation history per station; default 1 returns only the most recent
- Flight category (VFR/MVFR/IFR/LIFR) is returned directly from the AWC API — no client-side computation needed
- Decodes cloud layers, wind with gusts, and visibility in addition to the raw METAR string
- METAR type field distinguishes `METAR` (routine) from `SPECI` (special observation triggered by significant weather change)
---
### `aviation_get_taf`
Fetch Terminal Aerodrome Forecasts for 1–4 airports.
- Returns structured forecast periods with change types (`FM`, `TEMPO`, `BECMG`) and probabilities
- Common weather codes (e.g., `-SHRA`, `TSRA`) decoded to plain English alongside the raw string
- `valid_from` / `valid_to` in ISO 8601 for straightforward time comparisons
---
### `aviation_get_pireps`
Search for recent Pilot Reports by station+radius or bounding box.
- `station_id` + `distance_nm` (10–500 nm, default 100) for radial search around an airport
- `bbox` for geographic area search — useful for en-route corridor checks
- `altitude_min_ft` / `altitude_max_ft` filters to isolate reports at cruise altitude
- Turbulence and icing arrays include up to two layers per report (as reported by the API)
- Note: absence of PIREPs does not mean smooth conditions — they are sparse by nature
---
### `aviation_get_advisories`
List currently active SIGMETs and AIRMETs.
- `advisory_type` filter: `sigmet`, `airmet`, or `all` (default)
- `hazard` filter: `CONVECTIVE`, `TURBULENCE`, `ICING`, `IFR`, `MTN OBSCN`, `SURFACE WIND`, `LLWS`
- `bbox` filter applied client-side (AWC API returns all active advisories; the tool filters by polygon overlap)
- During fair-weather periods, no AIRMETs may be active — an empty result is a valid state, not an error
---
## Prompts
| Type | Name | Description |
|:-----|:-----|:------------|
| Prompt | `aviation_preflight_brief` | Structure a preflight weather briefing for one or more airports. Guides the LLM to call `aviation_get_metar`, `aviation_get_taf`, and `aviation_get_advisories` in sequence and synthesize a go/no-go picture with flight categories and active hazards. |
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.
---
## Features
Built on [`@cyanheads/mcp-ts-core`](https://www.npmjs.com/package/@cyanheads/mcp-ts-core):
- Declarative tool and prompt definitions — single file per primitive, framework handles registration and validation
- Unified error handling — handlers throw, framework catches, classifies, and formats
- Pluggable auth: `none`, `jwt`, `oauth`
- Structured logging with optional OpenTelemetry tracing
- STDIO and Streamable HTTP transports
Aviation-weather-specific:
- Keyless — no API key or authentication required; all data is from the public AWC Data API
- Single service (`aviation-weather-service`) with retry + exponential backoff for the keyless public endpoint
- Raw coded strings (`rawOb`, `rawTAF`, `rawAirSigmet`) surfaced alongside decoded fields so agents have both layers
- State→bbox table enables US-state station queries that the AWC API doesn't natively support
- Server-level `instructions` field surfaces the "not an official briefing" safety disclaimer to all clients on `initialize`
Agent-friendly output:
- Flight category (`VFR`/`MVFR`/`IFR`/`LIFR`) as a discriminated string field — agents can branch on it without parsing ceiling + visibility
- Structured error contracts with typed `reason` 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
---
## Getting started
### Public Hosted Instance
A public hosted instance is available at `https://aviation-weather.caseyjhand.com/mcp`. Add it to your MCP client configuration:
```json
{
"mcpServers": {
"aviation-weather": {
"type": "streamable-http",
"url": "https://aviation-weather.caseyjhand.com/mcp"
}
}
}
```
### Self-hosted / local
Add the following to your MCP client configuration file.
```json
{
"mcpServers": {
"aviation-weather": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/aviation-weather-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}
```
Or with npx (no Bun required):
```json
{
"mcpServers": {
"aviation-weather": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/aviation-weather-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}
```
Or with Docker:
```json
{
"mcpServers": {
"aviation-weather": {
"type": "stdio",
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "MCP_TRANSPORT_TYPE=stdio",
"ghcr.io/cyanheads/aviation-weather-mcp-server:latest"
]
}
}
}
```
For Streamable HTTP, set the transport and start the server:
```sh
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
# Server listens at http://localhost:3010/mcp
```
### Prerequisites
- [Bun v1.3.0](https://bun.sh/) or higher (or Node.js v24+).
- No API key required — the AWC Data API is fully public and keyless.
### Installation
1. **Clone the repository:**
```sh
git clone https://github.com/cyanheads/aviation-weather-mcp-server.git
```
2. **Navigate into the directory:**
```sh
cd aviation-weather-mcp-server
```
3. **Install dependencies:**
```sh
bun install
```
4. **Configure envWhat people ask about aviation-weather-mcp-server
What is cyanheads/aviation-weather-mcp-server?
+
cyanheads/aviation-weather-mcp-server is mcp servers for the Claude AI ecosystem. Fetch METARs, TAFs, PIREPs, and SIGMETs/AIRMETs from the NWS Aviation Weather Center via MCP. STDIO or Streamable HTTP. It has 0 GitHub stars and was last updated today.
How do I install aviation-weather-mcp-server?
+
You can install aviation-weather-mcp-server by cloning the repository (https://github.com/cyanheads/aviation-weather-mcp-server) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is cyanheads/aviation-weather-mcp-server safe to use?
+
Our security agent has analyzed cyanheads/aviation-weather-mcp-server and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.
Who maintains cyanheads/aviation-weather-mcp-server?
+
cyanheads/aviation-weather-mcp-server is maintained by cyanheads. The last recorded GitHub activity is from today, with 0 open issues.
Are there alternatives to aviation-weather-mcp-server?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy aviation-weather-mcp-server to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/cyanheads-aviation-weather-mcp-server)<a href="https://claudewave.com/repo/cyanheads-aviation-weather-mcp-server"><img src="https://claudewave.com/api/badge/cyanheads-aviation-weather-mcp-server" alt="Featured on ClaudeWave: cyanheads/aviation-weather-mcp-server" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!
⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。