get-forecast
Retrieve a 5-day weather forecast for any city using location details. Input city name and optional country code to fetch accurate weather predictions.
Instructions
Get 5-day weather forecast for a location
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | City name (e.g. Beijing, London) | |
country | No | Country code (e.g. CN, GB) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"city": {
"description": "City name (e.g. Beijing, London)",
"type": "string"
},
"country": {
"description": "Country code (e.g. CN, GB)",
"type": "string"
}
},
"required": [
"city"
],
"type": "object"
}