obtener-clima
Retrieve real-time weather data for a specified city. Use this tool to quickly access accurate climate information for planning and analysis.
Instructions
Herramienta para obtener clima
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | Ciudad para obtener el clima |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"city": {
"description": "Ciudad para obtener el clima",
"type": "string"
}
},
"required": [
"city"
],
"type": "object"
}