get_monthly_normals

Pack: meteostat · Endpoint: https://gateway.pipeworx.io/meteostat/mcp

Monthly climate normals for a station — long-run averages of temperature, precipitation, and pressure by calendar month. Useful for “what’s normal in May here” baselines.

Parameters

NameTypeRequiredDescription
station_idstringyesMeteostat station ID — from find_stations

Example call

Arguments

{
  "station_id": "72494"
}

curl

curl -X POST https://gateway.pipeworx.io/meteostat/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_monthly_normals","arguments":{"station_id":"72494"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_monthly_normals', {
  "station_id": "72494"
});

Response shape

Always returns: station_id, count, normals

FieldTypeDescription
station_idstringMeteostat numeric station ID
countintegerNumber of monthly normal records (typically 12)
normalsarrayMonthly climate normals
Full JSON Schema
{
  "type": "object",
  "properties": {
    "station_id": {
      "type": "string",
      "description": "Meteostat numeric station ID"
    },
    "count": {
      "type": "integer",
      "description": "Number of monthly normal records (typically 12)"
    },
    "normals": {
      "type": "array",
      "description": "Monthly climate normals",
      "items": {
        "type": "object",
        "properties": {
          "reference_start_year": {
            "type": "integer",
            "description": "Start year of reference period"
          },
          "reference_end_year": {
            "type": "integer",
            "description": "End year of reference period"
          },
          "month": {
            "type": "integer",
            "description": "Month number (1-12)"
          },
          "tavg_c": {
            "type": [
              "number",
              "null"
            ],
            "description": "Average temperature in Celsius"
          },
          "tmin_c": {
            "type": [
              "number",
              "null"
            ],
            "description": "Average minimum temperature in Celsius"
          },
          "tmax_c": {
            "type": [
              "number",
              "null"
            ],
            "description": "Average maximum temperature in Celsius"
          },
          "precip_mm": {
            "type": [
              "number",
              "null"
            ],
            "description": "Average precipitation in millimeters"
          },
          "wind_speed_kmh": {
            "type": [
              "number",
              "null"
            ],
            "description": "Average wind speed in km/h"
          },
          "pressure_hpa": {
            "type": [
              "number",
              "null"
            ],
            "description": "Average pressure in hectopascals"
          },
          "sunshine_min": {
            "type": [
              "number",
              "null"
            ],
            "description": "Average sunshine duration in minutes"
          }
        },
        "required": [
          "reference_start_year",
          "reference_end_year",
          "month"
        ]
      }
    }
  },
  "required": [
    "station_id",
    "count",
    "normals"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "meteostat": {
      "url": "https://gateway.pipeworx.io/meteostat/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build June 26, 2026