historical
ActiveTool of Open Meteo
"What was the weather on [date]" / "historical weather for [location]" / "temperature in [city] last summer" / "rainfall during [period]" / "past weather data" — ERA5 reanalysis covering 1940-present at any global lat/lng. Returns hourly or daily temperature, precipitation, wind, humidity etc. for any date range. Use for climate analysis, retrospective event weather, or training data.
Parameters schema
{
"type": "object",
"examples": [
{
"end_date": "2023-12-31",
"latitude": 48.8566,
"longitude": 2.3522,
"start_date": "2023-01-01"
},
{
"daily": "temperature_2m_max,precipitation_sum",
"end_date": "2020-08-31",
"latitude": 35.6762,
"longitude": 139.6503,
"start_date": "2020-06-01"
}
],
"required": [
"latitude",
"longitude",
"start_date",
"end_date"
],
"properties": {
"daily": {
"type": "string"
},
"hourly": {
"type": "string"
},
"end_date": {
"type": "string",
"description": "YYYY-MM-DD"
},
"latitude": {
"type": "number"
},
"timezone": {
"type": "string"
},
"longitude": {
"type": "number"
},
"start_date": {
"type": "string",
"description": "YYYY-MM-DD"
}
}
}Parent server
Open Meteo
https://github.com/pipeworx-io/mcp-open-meteo
1/7 registries