get_weather
Retrieve current weather data including temperature, conditions, humidity, wind speed, and atmospheric pressure for any specified city worldwide.
Instructions
Get current weather for a city
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | Name of the city to get weather for |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"description": "Name of the city to get weather for",
"type": "string"
}
},
"required": [
"city"
],
"type": "object"
}