openmeteo_get_forecast
Get a 7-day weather forecast for any location on Earth using Open-Meteo. Returns hourly temperature, precipitation probability, wind speed, and weather code. Free, no API key. Covers the entire globe including Asia, Australia, Americas, Europe, Africa.
Provider: Open-Meteo · Required: lat, lon
Input schema
{
"type": "object",
"required": [
"lat",
"lon"
],
"properties": {
"lat": {
"type": "number",
"description": "Latitude (e.g. 35.6762 for Tokyo, -33.8688 for Sydney, 51.5074 for London)"
},
"lon": {
"type": "number",
"description": "Longitude"
},
"days": {
"type": "number",
"description": "Forecast days 1–16 (default 7)"
},
"timezone": {
"type": "string",
"description": "Timezone string, e.g. \"Asia/Tokyo\", \"Australia/Sydney\", \"America/New_York\" (defaults to auto-detect)"
}
}
}
Calling this tool
Send an MCP tools/call request to https://munge.sh/mcp with name openmeteo_get_forecast.