generation_by_fuel

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

Great Britain half-hourly electricity generation by fuel type (Elexon BMRS FUELHH dataset). Returns MW generated per fuel (CCGT/gas, COAL, NUCLEAR, WIND, BIOMASS, NPSHYD hydro, PS pumped-storage, OCGT, OIL, and interconnector flows INTFR/INTIRL/etc) for each half-hour settlement period. Keyless. 48 settlement periods per day.

Parameters

NameTypeRequiredDescription
fromstringyesPublish-time start, ISO datetime, e.g. “2024-06-01T00:00Z”.
tostringyesPublish-time end, 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":"generation_by_fuel","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('generation_by_fuel', {
  "from": "2024-06-01T00:00Z",
  "to": "2024-06-01T01:00Z"
});

More examples

{
  "from": "2024-06-15T12:00Z",
  "to": "2024-06-15T18: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