spot_prices

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

Day-ahead electricity spot prices from Energi Data Service (Energinet, Denmark/Nordic).

Parameters

NameTypeRequiredDescription
areastringnoBidding zone, e.g. “DK1”, “DK2”, “DE”. Omit for all areas.
limitnumbernoMax records (default 24, i.e. last 24 hourly rows).
startstringnoISO date/time lower bound, e.g. “2026-06-01” or “2026-06-01T00:00”.
endstringnoISO date/time upper bound.

Example call

Arguments

{
  "area": "DK1",
  "limit": 24
}

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":"spot_prices","arguments":{"area":"DK1","limit":24}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('spot_prices', {
  "area": "DK1",
  "limit": 24
});

More examples

{
  "start": "2026-06-01",
  "end": "2026-06-02"
}

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