Weather
Get current weather conditions for any city worldwide using the free Open-Meteo API (no API key required).
Tools
get_weather
Returns current temperature, humidity, wind speed, and weather conditions for a given city.
{"city": "Stockholm"}
Parameters:
city (required): City name, optionally with country. Examples: Stockholm, Tokyo, New York, US, 上海, Paris, France
get_forecast
Returns multi-day weather forecast with daily high/low temperatures, conditions, precipitation, and wind.
{"city": "Paris", "days": 7}
Parameters:
city (required): City name, optionally with country
days (optional): Number of forecast days, 1-16. Default: 7
1---2name: weather3description: Weather4---56# Weather78Get current weather conditions for any city worldwide using the free Open-Meteo API (no API key required).910## Tools1112### get_weather1314Returns current temperature, humidity, wind speed, and weather conditions for a given city.1516```json17{"city": "Stockholm"}18```1920**Parameters:**21- `city` (required): City name, optionally with country. Examples: `Stockholm`, `Tokyo`, `New York, US`, `上海`, `Paris, France`2223### get_forecast2425Returns multi-day weather forecast with daily high/low temperatures, conditions, precipitation, and wind.2627```json28{"city": "Paris", "days": 7}29```3031**Parameters:**32- `city` (required): City name, optionally with country33- `days` (optional): Number of forecast days, 1-16. Default: 7