get_historical_data
Retrieve historical weather data for a specific station using station ID and date range, sourced from Spain's AEMET API through the MCP server.
Instructions
Obtain historical meteorological data for a specific station.
Args: station_id: Identifier of the station (e.g. "3195" for Madrid Retiro) start_date: Start date in format YYYYY-MM-DD end_date: End date in format YYYYY-MM-DD
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | Yes | ||
start_date | Yes | ||
station_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"title": "End Date",
"type": "string"
},
"start_date": {
"title": "Start Date",
"type": "string"
},
"station_id": {
"title": "Station Id",
"type": "string"
}
},
"required": [
"station_id",
"start_date",
"end_date"
],
"title": "get_historical_dataArguments",
"type": "object"
}