get_weather_forecast
Retrieve accurate weather forecasts for any location with customizable timeframes. Specify the location and the number of days (1-7) to predict weather conditions effectively.
Instructions
Get weather forecast for a specified location
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | Forecast days (1-7 days, default is 3 days) | |
location | Yes | Location name |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"description": "Forecast days (1-7 days, default is 3 days)",
"maximum": 7,
"minimum": 1,
"type": "number"
},
"location": {
"description": "Location name",
"type": "string"
}
},
"required": [
"location"
],
"type": "object"
}