get_alerts
Retrieve active weather alerts for any US state using the two-letter state code to stay informed about hazardous conditions.
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"
  ],
  "type": "object"
}