system_demand

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

Great Britain half-hourly electricity system demand outturn in MW (Elexon BMRS ITSDO dataset) over a required ISO-datetime window; returns one row per settlement period with settlementDate, settlementPeriod, and demand fields.

Parameters

NameTypeRequiredDescription
fromstringyesStart, ISO datetime, e.g. “2024-06-01T00:00Z”.
tostringyesEnd, ISO datetime, e.g. “2024-06-01T01:00Z”.

Example call

Arguments

{
  "from": "2024-06-01T00:00Z",
  "to": "2024-06-01T01:00Z"
}

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":"system_demand","arguments":{"from":"2024-06-01T00:00Z","to":"2024-06-01T01:00Z"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('system_demand', {
  "from": "2024-06-01T00:00Z",
  "to": "2024-06-01T01:00Z"
});

More examples

{
  "from": "2024-06-15T06:00Z",
  "to": "2024-06-15T12:00Z"
}

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.

Regenerated from source · build September 7, 2026