prozorro_search_organizations
Pack: prozorro · Endpoint: https://gateway.pipeworx.io/prozorro/mcp
Resolve a Ukrainian company or public buyer NAME to its EDRPOU code, using ProZorro’s organization index (keyless). This is the entry point for supplier due diligence: a user knows the company’s name, but prozorro_search_tenders filters by EDRPOU — call this first, then pass the returned edrpou as tenderer (supplier side) or buyer to get that company’s full tender history.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Company or buyer name, Ukrainian recommended. |
role | string | no | ”tenderer” for suppliers/bidders (default), or “buyer” for procuring entities. |
Example call
Arguments
{
"name": "ДТЕК"
}
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_search_organizations","arguments":{"name":"ДТЕК"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('prozorro_search_organizations', {
"name": "ДТЕК"
});
More examples
{
"name": "Укрзалізниця",
"role": "buyer"
}
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.