weather_forecast
Fetch accurate weather forecasts for 1-14 days using location details like city name, postal code, or coordinates. Ideal for planning activities and updates.
Instructions
Get weather forecast (1-14 days) for a location
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | Number of days (1-14) | |
q | Yes | Location query (city name, lat/lon, postal code, etc) |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"default": 1,
"description": "Number of days (1-14)",
"type": "integer"
},
"q": {
"description": "Location query (city name, lat/lon, postal code, etc)",
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
}