Climate
liveClimateEnvironmentLong-term climate projections and model comparisons via the Open-Meteo Climate API
2tools
0msauth
free tier50 calls/day
Tools
get_climate_projectionrequired: latitude, longitude, start_date, end_dateGet long-term climate projection data (temperature and precipitation) for a location using the EC_Earth3P_HR high-resolution climate model via the Open-Meteo Climate API. Date range must be between 1950 and 2050.
Parameters
NameTypeDescription
latitudereqnumberLatitude of the location in decimal degrees.longitudereqnumberLongitude of the location in decimal degrees.start_datereqstringStart date in YYYY-MM-DD format (must be between 1950 and 2050).end_datereqstringEnd date in YYYY-MM-DD format (must be between 1950 and 2050).Try it
Response
compare_modelsrequired: latitude, longitude, start_date, end_dateCompare daily mean temperature projections across three climate models (EC_Earth3P_HR, MPI_ESM1_2_XR, FGOALS_f3_H) for a location and date range.
Parameters
NameTypeDescription
latitudereqnumberLatitude of the location in decimal degrees.longitudereqnumberLongitude of the location in decimal degrees.start_datereqstringStart date in YYYY-MM-DD format (must be between 1950 and 2050).end_datereqstringEnd date in YYYY-MM-DD format (must be between 1950 and 2050).Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/climate/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Call a tool
bash
curl -X POST https://gateway.pipeworx.io/climate/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_climate_projection","arguments":{"latitude": 37.7749, "longitude": -122.4194, "start_date": "2025-01-01", "end_date": "2025-01-01"}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_climate_projection", {"latitude":"example","longitude":"example","start_date":"example","end_date":"example"});ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("long-term climate projections and model comparisons via the open-meteo climate api");