get_historical_observations
Retrieve weather data for a specific station and date from the WeatherXM Pro MCP Server to analyze historical weather observations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | Date (YYYY-MM-DD) for historical observations | |
station_id | Yes | The unique identifier of the station |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"date": {
"description": "Date (YYYY-MM-DD) for historical observations",
"type": "string"
},
"station_id": {
"description": "The unique identifier of the station",
"type": "string"
}
},
"required": [
"station_id",
"date"
],
"type": "object"
}