prozorro_search_tenders
Pack: prozorro · Endpoint: https://gateway.pipeworx.io/prozorro/mcp
Full-text search over ALL Ukraine ProZorro tenders back to 2015 (keyless). Searches ProZorro’s own analyzed index, so Ukrainian queries stem correctly (“школа” also matches “школи”, “шкільний”) — pass Ukrainian keywords for best recall. Filter by buyer EDRPOU, by SUPPLIER/bidder EDRPOU (tenderer — this is the one for supplier due diligence: every tender a company has bid on or won), CPV code, status, value range, and date. Returns tenderID, title, value, buyer name + EDRPOU + region, and status, plus a total match count. Use prozorro_get_tender for the full detail of one result.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Free-text query, Ukrainian recommended (e.g. “вугілля”, “школа”). Optional if you pass a filter such as tenderer or buyer. |
tenderer | string | no | Supplier/bidder EDRPOU code (8 digits, e.g. “00131305”) — returns every tender this company bid on or won. The primary supplier due-diligence filter. |
buyer | string | no | Buyer/procuring-entity EDRPOU code (8 digits). |
cpv | string | no | Exact CPV classification code, e.g. “09111100-1”. |
status | string | no | Tender status: complete, active.tendering, cancelled, unsuccessful, … |
date_from | string | no | Start date YYYY-MM-DD. NOTE: date filtering DROPS records that have no tender period — leave both dates off unless you need them. |
date_to | string | no | End date YYYY-MM-DD. Same caveat as date_from. |
sort_by | string | no | ”dateCreated” (default) or “value.amount”. |
order | string | no | ”desc” (default) or “asc”. |
page | number,string | no | Page number, 1-500. Fixed 20 results per page. |
Example call
Arguments
{
"query": "комп'ютер"
}
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_tenders","arguments":{"query":"комп'\''ютер"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('prozorro_search_tenders', {
"query": "комп'ютер"
});
More examples
{
"query": "вугілля",
"status": "complete"
}
{
"tenderer": "00131305"
}
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.