elexon_system_prices
Pack: elexon · Endpoint: https://gateway.pipeworx.io/elexon/mcp
Great Britain electricity imbalance prices for a settlement day: system buy price and system sell price per settlement period, in GBP/MWh, plus the price derivation code, reserve scarcity price and net imbalance volume (Elexon DISEBSP). This is the cash-out price the balancing market settles at. Keyless. Elexon serves it outside the /datasets routes, so query_dataset cannot reach it.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
settlement_date | string | yes | Settlement date, e.g. “2026-08-27”. |
settlement_period | number | no | Optional settlement period 1-48. Omit for the whole day (48 rows). |
Example call
Arguments
{
"settlement_date": "2026-08-27"
}
curl
curl -X POST https://gateway.pipeworx.io/elexon/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"elexon_system_prices","arguments":{"settlement_date":"2026-08-27"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('elexon_system_prices', {
"settlement_date": "2026-08-27"
});
More examples
{
"settlement_date": "2026-08-27",
"settlement_period": 12
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"elexon": {
"url": "https://gateway.pipeworx.io/elexon/mcp"
}
}
}
See Getting Started for client-specific install steps.