prozorro_search_tenders
Pack: prozorro · Endpoint: https://gateway.pipeworx.io/prozorro/mcp
Keyword search over recent Ukraine ProZorro tenders (keyless OpenProcurement public feed). Best-effort: scans the recent public feed and returns tenders whose title/buyer/tenderID match the query (case-insensitive substring; Ukrainian text supported — pass Ukrainian keywords for best recall). Returns id, tenderID, title, value, buyer, status. NOTE: this is not a full-text index of all history — ProZorro’s front-end search API is not reachable from datacenter egress, so this filters the recent feed only. For older or exact tenders use prozorro_get_tender with a known id.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Keyword(s) to match against title/buyer/tenderID. Ukrainian recommended (e.g. “комп’ютер”, “школа”). Matches by substring. |
scan | number,string | no | How many recent tenders to scan (1-200). Default 100. Higher = deeper but slower. |
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": "школа",
"scan": 150
}
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.