miso_lmp
Pack: miso · Endpoint: https://gateway.pipeworx.io/miso/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/miso_lmp for the schema, then POST the same URL with its arguments for the data.
MISO real-time five-minute locational marginal prices (LMP $/MWh) by pricing node, split into its energy / congestion / loss components (MEC-equivalent, MCC, MLC) together with the ancillary-service clearing prices (regulation, spinning, supplemental, short-term reserve, ramp up/down). Covers the Central, North and South regions. Use for “MISO power price right now”, “which MISO nodes are congested”, “MISO South vs North price spread”, scarcity-pricing checks.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
region | string | no | Filter to one region: Central, North or South. Omit for all regions. |
node | string | no | Filter to pricing nodes whose name contains this text, case-insensitive (e.g. “MINN.HUB”, “LEPA”). |
limit | number | no | Max nodes to return (default 50, max 2000). |
Example call
Arguments
{
"region": "South",
"limit": 5
}
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_lmp","arguments":{"region":"South","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('miso_lmp', {
"region": "South",
"limit": 5
});
More examples
{
"node": "MINN.HUB"
}
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.