weather-get_hourly
Retrieve the next 12-hour hourly weather forecast for a specific location using metric or imperial units. Ideal for planning daily activities with precise weather updates.
Instructions
Get hourly weather forecast for the next 12 hours
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location | Yes | The city or location for which to retrieve the weather forecast. | |
units | No | Temperature unit system (metric for Celsius, imperial for Fahrenheit). Default is metric. |
Input Schema (JSON Schema)
{
"properties": {
"location": {
"description": "The city or location for which to retrieve the weather forecast.",
"type": "string"
},
"units": {
"description": "Temperature unit system (metric for Celsius, imperial for Fahrenheit). Default is metric.",
"enum": [
"metric",
"imperial"
],
"type": "string"
}
},
"required": [
"location"
],
"type": "object"
}