gnerc_prices

Pack: georgia-energy · Endpoint: https://gateway.pipeworx.io/georgia-energy/mcp

Monthly Georgian electricity prices set or recorded by the Georgian National Energy and Water Supply Regulatory Commission (GNERC), 2015 to 2026, in tetri per kWh: the average balancing-electricity sale price, the guaranteed-capacity fee, and the price ESCO paid deregulated power stations.

Parameters

NameTypeRequiredDescription
seriesstringyesWhich price series. ‘balancing’ = average sale price of balancing electricity; ‘capacity_fee’ = guaranteed capacity fee; ‘deregulated’ = price ESCO paid deregulated stations.
yearintegernoRestrict to one year, 2015-2026. Omit for the whole series.

Example call

Arguments

{
  "series": "balancing",
  "year": 2026
}

curl

curl -X POST https://gateway.pipeworx.io/georgia-energy/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gnerc_prices","arguments":{"series":"balancing","year":2026}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('gnerc_prices', {
  "series": "balancing",
  "year": 2026
});

More examples

{
  "series": "capacity_fee"
}

Connect

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

{
  "mcpServers": {
    "georgia-energy": {
      "url": "https://gateway.pipeworx.io/georgia-energy/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 10, 2026