searchLocation
Search for Swiss locations to retrieve detailed hourly and daily weather forecasts using weather data from the LandiWetter MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
locationName | Yes | The name of the location to search for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"locationName": {
"description": "The name of the location to search for",
"type": "string"
}
},
"required": [
"locationName"
],
"type": "object"
}