query_dataset

Pack: energi-data-dk · Endpoint: https://gateway.pipeworx.io/energi-data-dk/mcp

Generic escape hatch for any of the ~100 Energi Data Service (Energinet, Denmark) datasets.

Parameters

NameTypeRequiredDescription
datasetstringyesDataset name, e.g. “ProductionConsumptionSettlement”.
limitnumbernoMax records (default 20).
sortstringnoSort expression, e.g. “HourUTC DESC”.
startstringnoISO date/time lower bound.
endstringnoISO date/time upper bound.
filterobjectnoColumn→value[] filter, e.g. {“PriceArea”:[“DK1”]}. Values are arrays.

Example call

Arguments

{
  "dataset": "ProductionConsumptionSettlement",
  "limit": 20
}

curl

curl -X POST https://gateway.pipeworx.io/energi-data-dk/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"query_dataset","arguments":{"dataset":"ProductionConsumptionSettlement","limit":20}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('query_dataset', {
  "dataset": "ProductionConsumptionSettlement",
  "limit": 20
});

More examples

{
  "dataset": "Elspotprices",
  "start": "2026-06-01",
  "end": "2026-06-02",
  "filter": {
    "PriceArea": [
      "DK1",
      "DK2"
    ]
  }
}

Connect

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

{
  "mcpServers": {
    "energi-data-dk": {
      "url": "https://gateway.pipeworx.io/energi-data-dk/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 7, 2026