renewable_share
Pack: energy-charts · Endpoint: https://gateway.pipeworx.io/energy-charts/mcp
Renewable share of a country’s electricity load — what share / percent of load is currently being covered by renewables (wind, solar, hydro combined). Keyless, no API key. Answers “what share of Germany’s electricity load is renewable right now”. Returns a list of series [{name, data, …}] where each data point is a percent of load; values are timestamp-ordered, most recent last (read the last value for the current share). Dates optional (defaults to the last 7 days).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
country | string | yes | 2-letter lowercase country code, e.g. “de”, “fr”, or “all” for the EU aggregate. |
start | string | no | Optional start date, YYYY-MM-DD. Defaults to 7 days ago. |
end | string | no | Optional end date, YYYY-MM-DD. Defaults to today. |
Example call
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":{}}}'
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.