get_forecast_for_cell
Retrieve weather forecast data for a specific H3 cell using the WeatherXM Pro MCP Server. Specify date range and forecast type (daily or hourly) for accurate weather predictions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
forecast_cell_index | Yes | The H3 index of the cell to get forecast for | |
forecast_from | Yes | The first day for which to get forecast data (YYYY-MM-DD) | |
forecast_include | Yes | Types of forecast to include | |
forecast_to | Yes | The last day for which to get forecast data (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"forecast_cell_index": {
"description": "The H3 index of the cell to get forecast for",
"type": "string"
},
"forecast_from": {
"description": "The first day for which to get forecast data (YYYY-MM-DD)",
"type": "string"
},
"forecast_include": {
"description": "Types of forecast to include",
"enum": [
"daily",
"hourly"
],
"type": "string"
},
"forecast_to": {
"description": "The last day for which to get forecast data (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"forecast_cell_index",
"forecast_from",
"forecast_to",
"forecast_include"
],
"type": "object"
}