renewable_share
Pack: energy-charts · Endpoint: https://gateway.pipeworx.io/energy-charts/mcp
Renewable share of a country’s electricity LOAD, as a percent — how much of demand wind, solar, hydro and biomass are covering, now or over a past date range. Answers “what share of Germany’s electricity is renewable right now”, “how renewable was France’s grid in July”, “which days last month did renewables cover most of the load”. Accepts a country NAME (“Germany”) or 2-letter code, or “eu”/“all” for the EU aggregate. Returns the latest MEASURED reading with its timestamp, a min/avg/max summary for the window, and a per-day breakdown; 15-minute readings are included for windows of 3 days or less. Values are percent OF LOAD and legitimately exceed 100 when a country generates more renewable power than it consumes and exports the surplus. Measured settled data, not a forecast. Keyless. Source: Fraunhofer ISE energy-charts.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
country | string | yes | Country name (“Germany”, “France”) or 2-letter code (“de”, “fr”, “es”, “pl”). Use “eu” or “all” for the EU aggregate. |
start | string | no | Optional start date, YYYY-MM-DD. Honoured — a past window returns that window. Defaults to 7 days ago. Maximum span 366 days. |
end | string | no | Optional end date, YYYY-MM-DD, inclusive. Defaults to today. |
Example call
Arguments
{
"country": "Germany"
}
curl
curl -X POST https://gateway.pipeworx.io/energy-charts/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"renewable_share","arguments":{"country":"Germany"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('renewable_share', {
"country": "Germany"
});
More examples
{
"country": "de",
"start": "2026-07-01",
"end": "2026-07-07"
}
{
"country": "eu"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"energy-charts": {
"url": "https://gateway.pipeworx.io/energy-charts/mcp"
}
}
}
See Getting Started for client-specific install steps.