gse_demand_forecast
Pack: georgia-energy · Endpoint: https://gateway.pipeworx.io/georgia-energy/mcp
Georgia’s day-ahead electricity forecast published by JSC Georgian State Electrosystem: hour-by-hour total consumption, total supply, thermal / hydro (regulated and seasonal) / wind generation, and planned import and export, in MWh. Published daily, typically a day ahead.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
date | string | no | The forecast date as ‘YYYY-MM-DD’. Defaults to today in Tbilisi. Tomorrow is usually already published; older dates stay available. |
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_demand_forecast","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gse_demand_forecast', {});
More examples
{
"date": "2026-09-10"
}
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.