ENTSO-E Transparency
live EnergyEuropePan-European electricity TSO data — load, generation, day-ahead prices, cross-border flows.
5 tools
0ms auth
free tier 50 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@latest",
"https://gateway.pipeworx.io/entso-e/mcp?_apiKey=your_token"
]
}
}
} Tools
day_ahead_prices
required: area, period_start, period_end Day-ahead auction prices (€/MWh) per hour.
Parameters
Name Type Description
area req string Bidding-zone EIC code period_start req string YYYYMMDDHHmm UTC period_end req string — Try it
Response
actual_load
required: area, period_start, period_end Hourly measured electricity consumption.
Parameters
Name Type Description
area req string — period_start req string — period_end req string — Try it
Response
actual_generation_per_type
required: area, period_start, period_end Generation broken down by production type (solar, wind, nuclear, ...).
Parameters
Name Type Description
area req string — period_start req string — period_end req string — Try it
Response
cross_border_flow
required: area_from, area_to, period_start, period_end Physical flow across an interconnector.
Parameters
Name Type Description
area_from req string — area_to req string — period_start req string — period_end req string — Try it
Response
installed_capacity
required: area, year Year-end installed generation capacity by type.
Parameters
Name Type Description
area req string — year req number — Try it
Response
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");