miso_load
Pack: miso · Endpoint: https://gateway.pipeworx.io/miso/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/miso_load for the schema, then POST the same URL with its arguments for the data.
MISO real-time total load (electricity demand) for today, hour by hour in MW, alongside the medium-term load forecast for the same hours so actual-vs-forecast is directly comparable. Use for “MISO demand today”, “is MISO load running above forecast”, peak-hour timing.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/miso/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"miso_load","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('miso_load', {});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"miso": {
"url": "https://gateway.pipeworx.io/miso/mcp"
}
}
}
See Getting Started for client-specific install steps.