munge.sh

openmeteo_get_historical

Get historical weather data for any location. Returns daily temperature, precipitation, and wind data. Global coverage, data available from 1940 onwards.

Provider: Open-Meteo · Required: lat, lon, start_date, end_date

Input schema

{
  "type": "object",
  "required": [
    "lat",
    "lon",
    "start_date",
    "end_date"
  ],
  "properties": {
    "lat": {
      "type": "number",
      "description": "Latitude"
    },
    "lon": {
      "type": "number",
      "description": "Longitude"
    },
    "end_date": {
      "type": "string",
      "description": "End date in YYYY-MM-DD format"
    },
    "timezone": {
      "type": "string",
      "description": "Timezone string (default auto)"
    },
    "start_date": {
      "type": "string",
      "description": "Start date in YYYY-MM-DD format"
    }
  }
}

Calling this tool

Send an MCP tools/call request to https://munge.sh/mcp with name openmeteo_get_historical.