getWeatherForecast
Retrieve precise weather forecasts for Swiss locations by specifying a location ID and optional date. Access detailed hourly and daily data with the LandiWetter MCP Server API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | Optional: The date for the forecast (yyyy-MM-dd). Defaults to today | |
locationId | Yes | The location ID (e.g., G2661552) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"date": {
"description": "Optional: The date for the forecast (yyyy-MM-dd). Defaults to today",
"type": "string"
},
"locationId": {
"description": "The location ID (e.g., G2661552)",
"type": "string"
}
},
"required": [
"locationId"
],
"type": "object"
}