nyiso_load_forecast
Pack: us-iso-grid · Endpoint: https://gateway.pipeworx.io/us-iso-grid/mcp
NYISO (New York) ISO load forecast (ISOLF) for the most recent published day, per zone, MW. Use for “what does NYISO expect demand to be today”, forecast-error tracking vs. nyiso_load.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
date | string | no | YYYY-MM-DD. Defaults to yesterday. |
zone | string | no | Optional zone filter. Default: all 11 zones. |
Example call
Arguments
{
"date": "2024-01-15"
}
curl
curl -X POST https://gateway.pipeworx.io/us-iso-grid/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nyiso_load_forecast","arguments":{"date":"2024-01-15"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nyiso_load_forecast', {
"date": "2024-01-15"
});
More examples
{
"date": "2024-01-15",
"zone": "CAPITL"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"us-iso-grid": {
"url": "https://gateway.pipeworx.io/us-iso-grid/mcp"
}
}
}
See Getting Started for client-specific install steps.