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

NameTypeRequiredDescription
querystringnoFree-text query, Ukrainian recommended (e.g. “вугілля”, “школа”). Optional if you pass a filter such as tenderer or buyer.
tendererstringnoSupplier/bidder EDRPOU code (8 digits, e.g. “00131305”) — returns every tender this company bid on or won. The primary supplier due-diligence filter.
buyerstringnoBuyer/procuring-entity EDRPOU code (8 digits).
cpvstringnoExact CPV classification code, e.g. “09111100-1”.
statusstringnoTender status: complete, active.tendering, cancelled, unsuccessful, …
date_fromstringnoStart date YYYY-MM-DD. NOTE: date filtering DROPS records that have no tender period — leave both dates off unless you need them.
date_tostringnoEnd date YYYY-MM-DD. Same caveat as date_from.
sort_bystringno”dateCreated” (default) or “value.amount”.
orderstringno”desc” (default) or “asc”.
pagenumber,stringnoPage 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.

Regenerated from source · build September 10, 2026