Weather

live Weather

Real-time weather conditions and multi-day forecasts from Open-Meteo

3 tools
0ms auth
free tier 50 calls/day

Tools

get_weather required: latitude, longitude

Get current weather conditions for a location. Returns temperature, humidity, wind speed, and conditions.

Parameters
Name Type Description
latitude req number Latitude of the location
longitude req number Longitude of the location
Try it
get_forecast required: latitude, longitude

Get a multi-day weather forecast for a location. Returns daily high/low temperatures, precipitation, and conditions.

Parameters
Name Type Description
latitude req number Latitude of the location
longitude req number Longitude of the location
days opt number Number of forecast days (1-16, default 7)
Try it
get_historical required: latitude, longitude, start_date, end_date

Daily historical weather (ERA5 reanalysis) from 1940 onward. Returns date-keyed high/low, precipitation, and conditions for any lat/lon over an arbitrary date range. Use for climate baselines and "what was the weather on…" questions.

Parameters
Name Type Description
latitude req number Latitude of the location
longitude req number Longitude of the location
start_date req string YYYY-MM-DD (>= 1940-01-01)
end_date req string YYYY-MM-DD (inclusive)
Try it

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/weather/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/weather/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_weather","arguments":{"latitude": 37.7749, "longitude": -122.4194}}}'

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_weather", {"latitude":"example","longitude":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("real-time weather conditions and multi-day forecasts from open-meteo");