spp_lmp_latest

Pack: spp · Endpoint: https://gateway.pipeworx.io/spp/mcp

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

SPP real-time balancing market (RTBM) locational marginal prices — the most recently published 5-minute interval, per settlement location, with the LMP split into its marginal energy (MEC), congestion (MCC) and loss (MLC) components. Several hundred settlement locations per interval. Use for “SPP power price right now”, “which SPP locations are congested”, “SPP price spike”.

Parameters

NameTypeRequiredDescription
locationstringnoFilter to settlement locations whose name contains this text, case-insensitive (e.g. “AECC”, “SPPNORTH_HUB”).
limitnumbernoMax locations to return (default 50, max 2000).

Example call

Arguments

{
  "limit": 5
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "location": "AECC",
  "limit": 5
}

Connect

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

{
  "mcpServers": {
    "spp": {
      "url": "https://gateway.pipeworx.io/spp/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026