Energy-Charts (Fraunhofer)

live Utility

Energy-Charts (Fraunhofer ISE) MCP — European electricity generation, prices, and capacity.

5 tools
0ms auth
free tier 50 calls/day

Tools

public_power

Electricity generation broken down by production type (solar, wind, nuclear, gas, etc.) for a country over a date range. Returns {unix_seconds, production_types:[{name, data}]}; each series' data arra

No parameters required.

Try it
electricity_price

Day-ahead spot electricity prices for a bidding zone over a date range. Returns {unix_seconds, price, unit}; the price array is timestamp-aligned to unix_seconds. Prices in EUR/MWh.

No parameters required.

Try it
total_power

Total electricity generation / load for a country over a date range. Returns {unix_seconds, production_types:[{name, data}]}; data arrays are timestamp-aligned to unix_seconds. Power in MW.

No parameters required.

Try it
installed_power

Installed generation capacity by production type for a country, as an annual or monthly series. Returns {time:["2002",...], production_types:[{name, data}]}; data arrays are aligned to the time array.

No parameters required.

Try it
renewable_share

Renewable share of electricity load for a country over a date range. Returns a list of series [{name, data, ...}] where each data point is a percentage; values are timestamp-ordered. Percent of load.

No parameters required.

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/energy-charts/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/energy-charts/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"public_power","arguments":{}}}'

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("public_power", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("energy-charts (fraunhofer ise) mcp — european electricity generation, prices, and capacity");