United States Weather Data Access

get_weather_alerts

Get active weather alerts, warnings, watches, and advisories for locations in the United States. Perfect for 'Are there any weather alerts in [US location]?' questions. Covers severe weather, winter storms, heat warnings, flood alerts, and more.

Remote hellokitty-v/smithery-mcp-servers

Other tools also called get_weather_alerts? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "location": {
      "type": "string",
      "description": "US location as coordinates (lat,lng) in decimal degrees OR 2-letter state/territory code. Examples: '40.7128,-74.0060' for New York City, 'CA' for California, 'PR' for Puerto Rico. Valid state codes: AL, AK, AS, AR, AZ, CA, CO, CT, DE, DC, FL, GA, GU, HI, ID, IL, IN, IA, KS, KY, LA, ME, MD, MA, MI, MN, MS, MO, MT, NE, NV, NH, NJ, NM, NY, NC, ND, OH, OK, OR, PA, PR, RI, SC, SD, TN, TX, UT, VT, VI, VA, WA, WV, WI, WY, MP, PW, FM, MH."
    },
    "severity": {
      "enum": [
        "all",
        "extreme",
        "severe",
        "moderate",
        "minor"
      ],
      "type": "string",
      "default": "all",
      "description": "Filter by alert severity: 'extreme' (life-threatening), 'severe' (significant threat), 'moderate' (possible threat), 'minor' (minimal threat), or 'all' (default - shows all active alerts)."
    }
  }
}