nyiso_load
Pack: us-iso-grid · Endpoint: https://gateway.pipeworx.io/us-iso-grid/mcp
NYISO (New York) actual zonal load (MW) per 5-minute interval for the most recent published day, by zone (CAPITL, CENTRL, DUNWOD, GENESE, HUD VL, LONGIL, MHK VL, MILLWD, N.Y.C., NORTH, WEST). Use for NY zonal demand analysis, peak-time identification, NYC load profile vs. upstate.
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","arguments":{"date":"2024-01-15"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nyiso_load', {
"date": "2024-01-15"
});
More examples
{
"date": "2024-01-15",
"zone": "N.Y.C."
}
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.