get_alerts
Retrieve current weather alerts for any US state by providing the two-letter state code to monitor severe conditions and stay informed.
Instructions
Get weather alerts for a state
Input Schema
Name | Required | Description | Default |
---|---|---|---|
state | Yes | Two-letter state code (e.g. CA, NY) |
Input Schema (JSON Schema)
{
"properties": {
"state": {
"description": "Two-letter state code (e.g. CA, NY)",
"maxLength": 2,
"minLength": 2,
"type": "string"
}
},
"required": [
"state"
],
"type": "object"
}