get_alerts
Retrieve active weather alerts for any US state using the National Weather Service API. Specify the two-letter state code to access real-time weather warnings and advisories.
Instructions
Get weather alerts for a US state.
Args:
state: Two-letter US state code (e.g. CA, NY)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
state | Yes |
Input Schema (JSON Schema)
{
"properties": {
"state": {
"title": "State",
"type": "string"
}
},
"required": [
"state"
],
"title": "get_alertsArguments",
"type": "object"
}