elexon_list_datasets
Pack: elexon · Endpoint: https://gateway.pipeworx.io/elexon/mcp
Directory of all 84 Elexon BMRS Insights datasets available to query_dataset: the dataset code, what it holds, and which window parameters its route takes (publish time, from/to, settlement date + period, measurement time, or submission time). Covers generation outturn and forecasts, demand and load, balancing mechanism bids/offers and acceptances, market index prices, system frequency, temperature, credit default and system warning notices, and the REMIT outage messages. Search by keyword to find the code for a subject before calling query_dataset. Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
search | string | no | Optional case-insensitive keyword matched against the dataset code and its title, e.g. “wind”, “demand”, “price”, “forecast”. Omit to list all 84. |
Example call
Arguments
{}
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_list_datasets","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('elexon_list_datasets', {});
More examples
{
"search": "wind"
}
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.