get_weather_forecast
Retrieve a 5-day weather forecast with 3-hour intervals for any city. Specify the location and optional days (1-5) to access detailed weather predictions via the Multi-MCPs server.
Instructions
Get 5-day/3-hour forecast by city name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | Days to include (1-5) | |
location | Yes |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"description": "Days to include (1-5)",
"type": "number"
},
"location": {
"type": "string"
}
},
"required": [
"location"
],
"type": "object"
}