electricitymaps_carbon_forecast

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

Carbon-intensity forecast for a zone — upcoming hourly gCO2/kWh predictions, useful for scheduling loads when the grid is cleanest. Requires a paid Electricity Maps plan. Pass a zone code (e.g. “US-CAL-CISO”, “DE”, “FR”, “GB”). Example: electricitymaps_carbon_forecast({ zone: “GB”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
zonestringyes
_apiKeystringyesElectricity Maps API key (forecast requires a paid plan)

Example call

Arguments

{
  "zone": "GB",
  "_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_carbon_forecast","arguments":{"zone":"GB","_apiKey":"your-electricity-maps-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('electricitymaps_carbon_forecast', {
  "zone": "GB",
  "_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