get-weather
Fetch current weather data for any city using the Open-Meteo API. Provide the city name as input to retrieve accurate weather information.
Instructions
Tool to fetch the weather for a given city
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | City name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"city": {
"description": "City name",
"type": "string"
}
},
"required": [
"city"
],
"type": "object"
}