get-current-weather
Retrieve real-time weather data for a specific location using city name or coordinates. Specify temperature units (Celsius, Fahrenheit, or Kelvin) for accurate weather conditions.
Instructions
Get current weather conditions for a location
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location | Yes | City name (e.g., 'New York') or coordinates (e.g., 'lat,lon') | |
units | No | Temperature units: metric (Celsius), imperial (Fahrenheit), or standard (Kelvin) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"location": {
"description": "City name (e.g., 'New York') or coordinates (e.g., 'lat,lon')",
"type": "string"
},
"units": {
"description": "Temperature units: metric (Celsius), imperial (Fahrenheit), or standard (Kelvin)",
"enum": [
"metric",
"imperial",
"standard"
],
"type": "string"
}
},
"required": [
"location"
],
"type": "object"
}