get-alerts
Retrieve weather alerts for any U.S. state by entering its two-letter code to stay informed about severe weather conditions via the Weather MCP Server.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"state": {
"description": "Two-letter state code (e.g. CA, NY)",
"maxLength": 2,
"minLength": 2,
"type": "string"
}
},
"required": [
"state"
],
"type": "object"
}