NOAA Weather Service
This connector provides current weather alerts and future forecasts from the National Weather Service.
Fetches active weather alerts from the National Weather Service.
What you can ask Delphi
- “Are there any active weather alerts for wildfires in California today?”
- “What is the expected temperature range and precipitation forecast for New York City over the next three days?”
- “Are there any severe thunderstorm warnings currently active in the Central Plains region?”
- “What are the forecasted wind speeds for coastal Oregon throughout the weekend?”
Technical details
Authentication ▾
Contact us for setup details.
Ingestion ▾
Tools exposed (4) ▾
Fetches active weather alerts from the National Weather Service.
Fetches weather forecast for a given location from the National Weather Service.
Create or update a recurring weather alerts feed. Useful for monitoring active severe weather, flood, or storm warnings over time. Same arguments as nws/get_alerts plus polling_frequency.
Create or update a recurring weather forecast feed. Useful for tracking changing forecasts over time. Same arguments as nws/get_forecast plus polling_frequency.
Inputs ▾
nws/get_alerts
| Name | Type | Required | Description |
|---|---|---|---|
| dashboardId | string | no | Target dashboard/initiative ID. Omit to use the current dashboard. |
| area | string | no | State code (e.g., "CA", "NY") or comma-separated codes. CANNOT be combined with zone, point, or region. |
| zone | string | no | UGC zone or county code (e.g., "NYZ072", "NCC012"). CANNOT be combined with area, point, or region. |
| point | string | no | Lat,lon pair (e.g., "39.7456,-97.0892"). CANNOT be combined with area, zone, or region. |
| region | string | no | Marine region code (e.g., "AT" for Atlantic, "GL" for Great Lakes). CANNOT be combined with area, zone, or point. |
| severity | string | no | Filter by severity level. Extreme Severe Moderate Minor Unknown |
| urgency | string | no | Filter by urgency level. Immediate Expected Future Past Unknown |
| certainty | string | no | Filter by certainty level. Observed Likely Possible Unlikely Unknown |
| status | string | no | Alert status. Default: "actual". actual exercise system test draft |
| message_type | string | no | Message type filter. alert update cancel |
| event | string | no | Event type (e.g., "Tornado Warning", "Flood Watch", "Winter Storm Warning"). |
| limit | number | no | Maximum number of alerts to return. |
| filter_paths | string[] | no | Optional: Glob patterns to filter output and reduce context usage (e.g. ['alerts[*].properties.headline']). |
nws/get_forecast
| Name | Type | Required | Description |
|---|---|---|---|
| dashboardId | string | no | Target dashboard/initiative ID. Omit to use the current dashboard. |
| latitude | number | yes | Latitude of the location. |
| longitude | number | yes | Longitude of the location. |
| filter_paths | string[] | no | Optional: Glob patterns to filter output and reduce context usage (e.g. ['forecast.properties.periods[*]']). |
schedule_weather_alerts
| Name | Type | Required | Description |
|---|---|---|---|
| dashboardId | string | no | Target dashboard/initiative ID. Omit to use the current dashboard. |
| area | string | no | State code (e.g., "CA", "NY") or comma-separated codes. CANNOT be combined with zone, point, or region. |
| zone | string | no | UGC zone or county code (e.g., "NYZ072", "NCC012"). CANNOT be combined with area, point, or region. |
| point | string | no | Lat,lon pair (e.g., "39.7456,-97.0892"). CANNOT be combined with area, zone, or region. |
| region | string | no | Marine region code (e.g., "AT" for Atlantic, "GL" for Great Lakes). CANNOT be combined with area, zone, or point. |
| severity | string | no | Filter by severity level. Extreme Severe Moderate Minor Unknown |
| urgency | string | no | Filter by urgency level. Immediate Expected Future Past Unknown |
| certainty | string | no | Filter by certainty level. Observed Likely Possible Unlikely Unknown |
| status | string | no | Alert status. Default: "actual". actual exercise system test draft |
| message_type | string | no | Message type filter. alert update cancel |
| event | string | no | Event type (e.g., "Tornado Warning", "Flood Watch", "Winter Storm Warning"). |
| limit | number | no | Maximum number of alerts to return. |
| filter_paths | string[] | no | Optional: Glob patterns to filter output and reduce context usage (e.g. ['alerts[*].properties.headline']). |
| polling_frequency | string | yes | How often to check for new alerts (e.g. '15m', '1h'). |
| description | string | no | Human-readable description of what this connector monitors. Shown to analysts in future sessions. |
| connectorId | string | no | If provided, updates the existing connector instead of creating a new one. |
schedule_weather_forecast
| Name | Type | Required | Description |
|---|---|---|---|
| dashboardId | string | no | Target dashboard/initiative ID. Omit to use the current dashboard. |
| latitude | number | yes | Latitude of the location. |
| longitude | number | yes | Longitude of the location. |
| filter_paths | string[] | no | Optional: Glob patterns to filter output and reduce context usage (e.g. ['forecast.properties.periods[*]']). |
| polling_frequency | string | yes | How often to check for new data (e.g. '15m', '1h'). |
| description | string | no | Human-readable description of what this connector monitors. Shown to analysts in future sessions. |
| connectorId | string | no | If provided, updates the existing connector instead of creating a new one. |