get-weather-alerts
Retrieve active weather alerts and warnings for a specified location using OpenWeatherMap MCP Server. Provide city name or coordinates to access real-time weather updates and stay informed about potential hazards.
Instructions
Get active weather alerts and warnings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location | Yes | City name (e.g., 'New York') or coordinates (e.g., 'lat,lon') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"location": {
"description": "City name (e.g., 'New York') or coordinates (e.g., 'lat,lon')",
"type": "string"
}
},
"required": [
"location"
],
"type": "object"
}