miso_binding_constraints
Pack: miso · Endpoint: https://gateway.pipeworx.io/miso/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/miso_binding_constraints for the schema, then POST the same URL with its arguments for the data.
MISO real-time transmission binding constraints — the specific flowgates and facility limits currently constraining the market, with their shadow price ($/MWh of relief). A binding constraint is why LMPs diverge between nodes. Use for “why is MISO congested”, “what transmission limit is binding”, “which flowgate is driving the price spread”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
kind | string | no | transmission = real-time transmission flowgates (default); subregional = sub-regional power-balance constraints; reserve = reserve-product constraints. |
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_binding_constraints","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('miso_binding_constraints', {});
More examples
{
"kind": "subregional"
}
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.