get_historical
Pack: weather · Endpoint: https://gateway.pipeworx.io/weather/mcp
Daily historical weather (ERA5 reanalysis) from 1940 onward for any location. Returns date-keyed high/low temperature, precipitation, and conditions. Use for climate baselines, “what was the weather on…” questions, and comparing current readings to long-run history.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
latitude | number | yes | Latitude of the location |
longitude | number | yes | Longitude of the location |
start_date | string | yes | Start date YYYY-MM-DD (>= 1940-01-01) |
end_date | string | yes | End date YYYY-MM-DD (inclusive) |
Example call
curl -X POST https://gateway.pipeworx.io/weather/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_historical","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"weather": {
"url": "https://gateway.pipeworx.io/weather/mcp"
}
}
}
See Getting Started for client-specific install steps.