fetch-Weather
Get current weather conditions for any city by providing the location name. Retrieve temperature, conditions, and other weather data through simple city queries.
Instructions
Get the weather for a given location
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | city name like 'Bogotá' |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"description": "city name like 'Bogotá'",
"type": "string"
}
},
"required": [
"city"
],
"type": "object"
}