UK Carbon Intensity
live EnvironmentUK Carbon Intensity MCP (National Grid ESO).
Tools
current_intensity Current national carbon intensity of Great Britain electricity for the live half-hour settlement period. Returns forecast + actual gCO2/kWh and an index band (very low → very high).
No parameters required.
Try it
intensity_forecast National carbon intensity (forecast + actual, gCO2/kWh) over a time window of half-hourly settlement periods. Use range="fw24h" for the 24h forecast forward from "from", range="pt24h" for the past 24h
No parameters required.
Try it
generation_mix Generation fuel mix for Great Britain — % share per fuel (gas, coal, nuclear, wind, solar, hydro, biomass, imports, other). Omit args for the current half-hour, or pass "from"/"to" ISO8601 UTC for a r
No parameters required.
Try it
regional_intensity Carbon intensity and generation mix for a specific GB region. Pass "postcode" (UK outcode, the first half of a postcode, e.g. "RG10") or "regionid" (1–17; e.g. 13 = London). Omit both for all regions
No parameters required.
Try it
intensity_factors Carbon intensity factors (gCO2/kWh) used per fuel type — e.g. Coal 937, Gas (Combined Cycle) 394, Nuclear 0, Wind 0, Solar 0. These are the constants behind the headline intensity figures.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/carbon-intensity-uk/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/carbon-intensity-uk/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"current_intensity","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("current_intensity", {}); // Or ask in plain English:
const answer = await px.ask("uk carbon intensity mcp (national grid eso)");