electricitymaps_power_breakdown

Pack: electricity-maps · Endpoint: https://gateway.pipeworx.io/electricity-maps/mcp

Power generation mix for a zone — the latest breakdown of electricity by source (nuclear, wind, solar, hydro, coal, gas, …) plus fossil-free and renewable percentages. Pass a zone code (e.g. “US-CAL-CISO”, “DE”, “FR”, “GB”) or lat+lon. Example: electricitymaps_power_breakdown({ zone: “FR”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
zonestringno
latnumbernoLatitude (use with lon instead of zone)
lonnumbernoLongitude (use with lat instead of zone)
_apiKeystringyesElectricity Maps API key (free trial / developer tier at electricitymaps.com)

Example call

Arguments

{
  "zone": "FR",
  "_apiKey": "your-electricity-maps-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/electricity-maps/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"electricitymaps_power_breakdown","arguments":{"zone":"FR","_apiKey":"your-electricity-maps-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('electricitymaps_power_breakdown', {
  "zone": "FR",
  "_apiKey": "your-electricity-maps-api-key"
});

More examples

{
  "zone": "US-CAL-CISO",
  "_apiKey": "your-electricity-maps-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "electricity-maps": {
      "url": "https://gateway.pipeworx.io/electricity-maps/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 22, 2026