ENTSO-E Transparency

liveEnergyEurope

Pan-European electricity TSO data — load, generation, day-ahead prices, cross-border flows.

5tools
0msauth
free tier50 calls/day
🔑Authentication

Platform key handled by Pipeworx. BYO: ?_apiKey=<token> after registering + emailing [email protected].

Config with credentials
{
  "mcpServers": {
    "pipeworx-entso-e": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/entso-e/mcp?_apiKey=your_token"
      ]
    }
  }
}

Tools

day_ahead_pricesrequired: area, period_start, period_end

Day-ahead auction prices (€/MWh) per hour.

Parameters
NameTypeDescription
areareqstringBidding-zone EIC code
period_startreqstringYYYYMMDDHHmm UTC
period_endreqstring
Try it
actual_loadrequired: area, period_start, period_end

Hourly measured electricity consumption.

Parameters
NameTypeDescription
areareqstring
period_startreqstring
period_endreqstring
Try it
actual_generation_per_typerequired: area, period_start, period_end

Generation broken down by production type (solar, wind, nuclear, ...).

Parameters
NameTypeDescription
areareqstring
period_startreqstring
period_endreqstring
Try it
cross_border_flowrequired: area_from, area_to, period_start, period_end

Physical flow across an interconnector.

Parameters
NameTypeDescription
area_fromreqstring
area_toreqstring
period_startreqstring
period_endreqstring
Try it
installed_capacityrequired: area, year

Year-end installed generation capacity by type.

Parameters
NameTypeDescription
areareqstring
yearreqnumber
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/entso-e/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/entso-e/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"day_ahead_prices","arguments":{"area": "example", "period_start": "2025-01-01", "period_end": "2025-01-01"}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("day_ahead_prices", {"area":"example","period_start":"example","period_end":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("pan-european electricity tso data — load, generation, day-ahead prices, cross-border flows");