get_forecast
Get 5-day weather forecasts for Portuguese cities including temperature, precipitation, wind conditions, and weather types to help plan activities and prepare for changing conditions.
Instructions
Get 5-day weather forecast for a Portuguese city (Previsão Meteorológica até 5 dias).
Args:
city_name: Name of the Portuguese city (e.g. Lisboa, Porto, Faro, Aveiro, Braga)
Returns detailed 5-day forecast including temperature, precipitation, wind, and weather type.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| city_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"city_name": {
"title": "City Name",
"type": "string"
}
},
"required": [
"city_name"
],
"type": "object"
}