isone_load

Pack: iso-ne · Endpoint: https://gateway.pipeworx.io/iso-ne/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/isone_load for the schema, then POST the same URL with its arguments for the data.

ISO New England system load (total electricity demand) in MW at five-minute resolution for the six-state New England footprint. Use for “New England electricity demand right now”, “ISO-NE peak load today”, demand-response and capacity questions. Requires an API key.

Parameters

NameTypeRequiredDescription
datestringnoDay to fetch as YYYY-MM-DD. Omit for the current interval.
limitnumbernoMax rows to return (default 100, max 2000).
_apiKeystringnoISO Express credential as “username:password” or its base64. Free account at ${SIGNUP}.

Example call

Arguments

{
  "limit": 100
}

curl

curl -X POST https://gateway.pipeworx.io/iso-ne/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"isone_load","arguments":{"limit":100}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('isone_load', {
  "limit": 100
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "iso-ne": {
      "url": "https://gateway.pipeworx.io/iso-ne/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026