gse_tenders
Pack: georgia-energy · Endpoint: https://gateway.pipeworx.io/georgia-energy/mcp
Procurement tenders run by JSC Georgian State Electrosystem, the Georgian electricity transmission system operator — substation and transmission-line construction, primary equipment supply, consultancy — with the awarded bidder, contract reference and bid prices where GSE has published them. Available in English and Georgian.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
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. |
year | integer | no | Restrict to one publication year. Available years are listed in the response. |
Example call
Arguments
{
"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_tenders","arguments":{"per_page":2}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gse_tenders', {
"per_page": 2
});
More examples
{
"lang": "en",
"page": 1,
"per_page": 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.