gse_grid_now
Pack: georgia-energy · Endpoint: https://gateway.pipeworx.io/georgia-energy/mcp
Georgia’s national electricity grid right now: hydro, thermal, wind and solar generation, total generation, cross-border flow on the Azerbaijan, Armenia, Russia (Salkhino/Java/Nakaduli lines) and Turkey tie lines, and total consumption — in MW as a 3-minute moving average. Sourced from the JSC Georgian State Electrosystem real-time system export, published every 3 minutes. Every value carries its QUALITY flag: ACT means actual telemetry, SUB means the operator substituted a figure and NRE means telemetry was not received, so SUB and NRE values are NOT measurements and must not be reported as such.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
max_lookback_slots | integer | no | How many 3-minute slots to walk back looking for the most recent published export. Publication lags a few minutes, so the current minute usually does not exist yet. Default 10 (30 minutes). |
Example call
Arguments
{}
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":"gse_grid_now","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gse_grid_now', {});
More examples
{
"max_lookback_slots": 20
}
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.