gnerc_station_generation
Pack: georgia-energy · Endpoint: https://gateway.pipeworx.io/georgia-energy/mcp
Monthly electricity generation for individual Georgian power stations — Enguri HPP, the Vardnili cascade, Khrami 1 and 2, Zhinvali, Gardabani thermal 1 and 2, the Kartli wind farm, named solar plants — plus national supply, consumption, import, export and named large direct consumers, in million kWh. Sourced from the Georgian National Energy and Water Supply Regulatory Commission (GNERC) actual-balance workbook, covering 2015 to 2026. Station names are published in Georgian script; each row keeps its original name and its position in the balance hierarchy.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
year | integer | yes | Calendar year, 2015-2026. |
query | string | no | Optional substring filter on the Georgian row label, e.g. “ჰესი” for hydro stations or “ენგურ” for Enguri. Matching is case-insensitive and accent-blind on the Georgian text as published. |
limit | integer | no | Maximum rows to return. Default 100, max 400. |
Example call
Arguments
{
"year": 2026,
"query": "ენგურ"
}
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_station_generation","arguments":{"year":2026,"query":"ენგურ"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gnerc_station_generation', {
"year": 2026,
"query": "ენგურ"
});
More examples
{
"year": 2026,
"limit": 400
}
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.