fetch-weather
Retrieve weather data for any city using the Open-Meteo API. Input the city name to access accurate weather information directly.
Instructions
Tool to fetch weather information
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"
}