gse_grid_at

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

Georgia’s national grid state at a specific past time — the same generation, tie-line and consumption blocks as gse_grid_now, with the same QUALITY flags, for one 3-minute slot. Sourced from the JSC Georgian State Electrosystem real-time export, which is retained for a rolling ~30 days; earlier timestamps are gone. Timestamps are Tbilisi local time (UTC+4) unless timezone is set to utc. If that exact slot was never published this reports the miss rather than substituting a nearby one.

Parameters

NameTypeRequiredDescription
timestampstringyesThe moment to read, as ‘YYYY-MM-DD HH:MM’ or ‘YYYY-MM-DDTHH:MM’ or ‘DD.MM.YYYY HH:MM’. Minutes are floored to the 3-minute grid GSE publishes on.
timezonestringnoHow to read the timestamp. Default ‘tbilisi’, which is how GSE names the files.

Example call

Arguments

{
  "timestamp": "2026-09-10 03:30",
  "timezone": "tbilisi"
}

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_at","arguments":{"timestamp":"2026-09-10 03:30","timezone":"tbilisi"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('gse_grid_at', {
  "timestamp": "2026-09-10 03:30",
  "timezone": "tbilisi"
});

More examples

{
  "timestamp": "2026-09-10 04:39"
}

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