climate_daily
Pack: weather-gc-ca · Endpoint: https://gateway.pipeworx.io/weather-gc-ca/mcp
Daily climate records (max/min/mean temperature °C, total precipitation mm, snow on ground cm) for an Environment Canada station over a date range. Use a 7-digit climate identifier, e.g. “6158355” (TORONTO CITY) or “1108395” (VANCOUVER INTL A). Station IDs come from the climate-stations collection. Keyless, official ECCC data.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
climate_id | string | yes | ECCC climate identifier, e.g. “6158355” (TORONTO CITY). |
start_date | string | yes | Start date YYYY-MM-DD, e.g. “2026-05-01”. |
end_date | string | yes | End date YYYY-MM-DD, e.g. “2026-05-07”. Max 50 days returned. |
Example call
Arguments
{
"climate_id": "6158355",
"start_date": "2026-05-01",
"end_date": "2026-05-07"
}
curl
curl -X POST https://gateway.pipeworx.io/weather-gc-ca/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"climate_daily","arguments":{"climate_id":"6158355","start_date":"2026-05-01","end_date":"2026-05-07"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('climate_daily', {
"climate_id": "6158355",
"start_date": "2026-05-01",
"end_date": "2026-05-07"
});
More examples
{
"climate_id": "1108395",
"start_date": "2026-01-01",
"end_date": "2026-01-31"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"weather-gc-ca": {
"url": "https://gateway.pipeworx.io/weather-gc-ca/mcp"
}
}
}
See Getting Started for client-specific install steps.