prozorro_get_tender
Pack: prozorro · Endpoint: https://gateway.pipeworx.io/prozorro/mcp
Full detail for a single Ukraine ProZorro tender by id (via the keyless OpenProcurement public API). Returns tenderID, title, description, status, procurement method, value (amount+currency), the buyer/procuring entity (name, EDR identifier, region, contact), tender period (start/end), enquiry period, number of bids, and line items (description, CPV classification, quantity, unit). Text is largely Ukrainian. Accepts the 32-char tender id from prozorro_recent_tenders / prozorro_search_tenders.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Tender id (32-hex, e.g. “156db6e773ba4b6e925d00f9ad3b13f4”). Not the human tenderID like “UA-2026-…”. |
Example call
Arguments
{
"id": "156db6e773ba4b6e925d00f9ad3b13f4"
}
curl
curl -X POST https://gateway.pipeworx.io/prozorro/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"prozorro_get_tender","arguments":{"id":"156db6e773ba4b6e925d00f9ad3b13f4"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('prozorro_get_tender', {
"id": "156db6e773ba4b6e925d00f9ad3b13f4"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"prozorro": {
"url": "https://gateway.pipeworx.io/prozorro/mcp"
}
}
}
See Getting Started for client-specific install steps.