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
| Name | Type | Required | Description |
|---|---|---|---|
station_id | string | yes | Meteostat 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
| Field | Type | Description |
|---|---|---|
station_id | string | Meteostat numeric station ID |
count | integer | Number of monthly normal records (typically 12) |
normals | array | Monthly 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.