Climate
live EnvironmentLong-term climate projections and model comparisons via the Open-Meteo Climate API
2 tools
0ms auth
free tier 50 calls/day
Tools
get_climate_projection
required: latitude, longitude, start_date, end_date Get 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
Name Type Description
latitude req number Latitude of the location in decimal degrees. longitude req number Longitude of the location in decimal degrees. start_date req string Start date in YYYY-MM-DD format (must be between 1950 and 2050). end_date req string End date in YYYY-MM-DD format (must be between 1950 and 2050). Try it
Response
compare_models
required: latitude, longitude, start_date, end_date Compare 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
Name Type Description
latitude req number Latitude of the location in decimal degrees. longitude req number Longitude of the location in decimal degrees. start_date req string Start date in YYYY-MM-DD format (must be between 1950 and 2050). end_date req string End 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");