Skip to main content
Server path: /weather | Type: Embedded | PCID required: No Get current weather conditions and multi-day forecasts for any location worldwide using the Open-Meteo API.

Tools

ToolDescription
weather_get_currentGet current weather conditions
weather_get_forecastGet multi-day weather forecast

weather_get_current

Get current weather conditions for a location. Provide either city or lat/lon coordinates. Parameters:
ParameterTypeRequiredDefaultDescription
latnumberNoLatitude of the location
lonnumberNoLongitude of the location
citystringNoCity name (e.g. “London”, “New York”)
unitsstringNo"metric"Unit system — "metric" or "imperial"
Response fields:
FieldTypeDescription
locationobjectLocation details
location.namestringLocation name
location.latitudenumberLatitude
location.longitudenumberLongitude
location.countrystringCountry name
location.timezonestringTimezone identifier
currentobjectCurrent weather conditions
current.temperaturenumberCurrent temperature
current.feels_likenumberFeels-like temperature
current.humiditynumberRelative humidity percentage
current.wind_speednumberWind speed
current.wind_directionnumberWind direction in degrees
current.weather_codenumberWMO weather condition code
current.descriptionstringHuman-readable weather description
current.is_daybooleanWhether it is currently daytime
current.unitsobjectUnits used in the response
current.units.temperaturestringTemperature unit (e.g. “°C” or “°F”)
current.units.wind_speedstringWind speed unit (e.g. “km/h” or “mph”)

weather_get_forecast

Get a multi-day weather forecast for a location. Provide either city or lat/lon coordinates. Parameters:
ParameterTypeRequiredDefaultDescription
latnumberNoLatitude of the location
lonnumberNoLongitude of the location
citystringNoCity name (e.g. “London”, “New York”)
daysnumberNo3Number of forecast days (1–7)
unitsstringNo"metric"Unit system — "metric" or "imperial"
Response fields:
FieldTypeDescription
locationobjectLocation details
location.namestringLocation name
location.latitudenumberLatitude
location.longitudenumberLongitude
location.countrystringCountry name
location.timezonestringTimezone identifier
forecastobject[]Array of daily forecast objects
forecast[].datestringForecast date
forecast[].temperature_maxnumberMaximum temperature
forecast[].temperature_minnumberMinimum temperature
forecast[].weather_codenumberWMO weather condition code
forecast[].descriptionstringHuman-readable weather description
forecast[].precipitation_probabilitynumberProbability of precipitation (percentage)
forecast[].wind_speed_maxnumberMaximum wind speed
forecast[].unitsobjectUnits used in the response