GnistAI GnistAI
Log in

NOAA Weather Alerts

Active U.S. weather alerts — watches, warnings, and advisories by area.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 4 tools tools 4 4 Environment

Data source: NOAA / NWS

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/noaa-alerts/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-noaa-alerts": {
      "url": "https://context.gnist.ai/mcp/noaa-alerts/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/noaa-alerts/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "get_alerts_for_point", "arguments": {"latitude": 1.0, "longitude": 1.0}}}'

API REST API

API Root https://context.gnist.ai/rest/noaa-alerts/

4 endpoints available:

Shell
curl "https://context.gnist.ai/rest/noaa-alerts/get_alerts_for_point?latitude=1.0&longitude=1.0" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/noaa-alerts/get_alerts_for_point",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "latitude": 1.0,
        "longitude": 1.0
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc noaa-alerts

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (4)

get_active_alerts
Get all currently active NOAA weather alerts and warnings across the US.
ParameterTypeRequiredDescription
stateanyoptionalTwo-letter US state/territory code to filter by (e.g. "CA", "TX", "PR").
severityanyoptionalFilter by severity level — "Extreme", "Severe", "Moderate", "Minor".
eventanyoptionalFilter by event type (e.g. "Tornado Warning", "Winter Storm Watch").
urgencyanyoptionalFilter by urgency — "Immediate", "Expected", "Future", "Past".
certaintyanyoptionalFilter by certainty — "Observed", "Likely", "Possible", "Unlikely".
limitintegeroptionalMaximum results to return (1-500, default 50). (default: 50)
get_alerts_for_point
Get active weather alerts for a specific geographic point in the US.
ParameterTypeRequiredDescription
latitudenumberrequiredLatitude of the point (-90 to 90).
longitudenumberrequiredLongitude of the point (-180 to 180).
limitintegeroptionalMaximum results to return (1-100, default 20). (default: 20)
get_alert
Get detailed information about a specific weather alert by its NWS alert ID.
ParameterTypeRequiredDescription
alert_idstringrequiredThe NWS alert identifier (e.g. "urn:oid:2.49.0.1.840.0.abc123").
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related