gse_publications
Pack: georgia-energy · Endpoint: https://gateway.pipeworx.io/georgia-energy/mcp
Reports and notices published by JSC Georgian State Electrosystem, Georgia’s transmission system operator — including the Generation Adequacy Assessment (the medium and long-term supply-adequacy outlook), annual reports, independent auditor’s reports, donor-organisation reports and the Strategic Environmental and Social Assessment. Also covers the operator’s news and announcements. Available in English and Georgian.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
collection | string | no | Which collection to list. Default ‘publications’. |
category_id | integer | no | Filter to one category. 3 = Annual Reports, 5 = Independent Auditor’s Annual Report, 6 = Generation Adequacy Assessment, 7 = Donor Organizations’ Reports, 8 = SESA, 1 = News, 2 = important news. Call with no category to see the full list in the response. |
lang | string | no | Language. Default ‘en’. |
page | integer | no | Page number, 1-based. Default 1. |
per_page | integer | no | Items per page. Default 10, max 50. |
Example call
Arguments
{
"category_id": 6,
"per_page": 2
}
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_publications","arguments":{"category_id":6,"per_page":2}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gse_publications', {
"category_id": 6,
"per_page": 2
});
More examples
{
"collection": "publications",
"lang": "en",
"per_page": 5
}
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.