ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

pipeworx-carbon

UK national carbon intensity data — real-time, historical, and generation mix from the Carbon Intensity API

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/brucegutman/pipeworx-carbon
Or

UK Carbon Intensity

How clean is the UK electricity grid right now? This pack pulls from the official Carbon Intensity API (carbonintensity.org.uk) maintained by National Grid ESO. Get real-time and historical carbon intensity forecasts plus the current generation fuel mix.

Tools

ToolPurpose
get_intensityCurrent national carbon intensity — forecast gCO2/kWh, actual value, and index (very low to very high)
get_intensity_by_dateCarbon intensity data for a specific date (format YYYY-MM-DD)
get_generation_mixCurrent electricity generation breakdown by fuel type (wind, solar, gas, nuclear, etc.)

When this is useful

  • Smart home systems deciding when to run appliances (charge EVs when intensity is low)
  • Sustainability dashboards showing real-time grid carbon data
  • Research comparing UK grid decarbonization over time
  • Answering "how green is UK electricity right now?"

Example

curl -s -X POST https://gateway.pipeworx.io/carbon/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_generation_mix","arguments":{}}}'

Returns something like:

{
  "from": "2024-03-15T10:00Z",
  "to": "2024-03-15T10:30Z",
  "mix": [
    { "fuel": "wind", "percentage": 38.2 },
    { "fuel": "nuclear", "percentage": 15.1 },
    { "fuel": "gas", "percentage": 22.4 },
    { "fuel": "solar", "percentage": 8.7 }
  ]
}

Setup

{
  "mcpServers": {
    "pipeworx-carbon": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/carbon/mcp"]
    }
  }
}

Metadata

Stars4190
Views0
Updated2026-04-18
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-brucegutman-pipeworx-carbon": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.