Prozorro.Sale MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Prozorro.Sale MCP ServerWhat land is up for rent near Lviv under 50 000 ₴?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Prozorro.Sale MCP Server
Read-only MCP server for Prozorro.Sale, the Ukrainian state platform that auctions public assets — small and large privatisation, land sale and rental, property lease, timber, subsoil, arrested and bankruptcy assets, sanctioned assets and non-performing loans.
The tools are organised around what people actually ask, not around HTTP endpoints. There is
no GET /procedures/{id}/documents/{doc_id}/history tool; there is "show me the documents for
this auction". Nothing writes: no bids are placed, no procedures are created or modified.
Tools
Tool | Question it answers |
| "What land is up for rent near Lviv under 50 000 ₴?" |
| "Tell me everything about SPD001-UA-20260806-70620." |
| "How long do I have left to bid, and what happens next?" |
| "What did it finally sell for, and how many bidders were there?" |
| "Give me the technical specification and the signed contract." |
| "Is this starting price reasonable for this kind of asset?" |
| "What new lots appeared in my niche since yesterday?" |
| "How much timber was auctioned last week, and how much of it sold?" |
| "Which asset programmes and auction formats exist?" |
| "If I list a lot today, how soon can the auction run?" |
Every tool accepts the public auction id printed on the website
(LRE001-UA-20260708-03894) as well as the internal 24-character procedure id.
Related MCP server: mcp-prozorro
Tool reference
search_auctions
Entry point for any "what is available" question.
Parameter | Type | Notes |
|
| Asset programme or exact selling method. |
|
| "What can I bid on" — keeps only auctions whose deadline has not passed. |
|
| Ukrainian free text over title, description, items, classification and locality. All words must match. |
|
| e.g. |
|
| Substring of oblast or settlement, e.g. |
|
| CAV/CPV code or prefix, e.g. |
|
| Starting-price band. |
|
| The body running the auction — on state-property leases usually a regional SPFU office, not the institution. |
|
| The organisation the asset belongs to (балансоутримувач). See Owner vs seller. |
|
| ISO date bounds on publication. |
|
| Scan a specific historical period instead of recent activity. |
|
| Results returned, 1–100. Default 20. |
|
| Feed pages to scan, 1–40. Default 8. Raise when results come back thin or truncated. |
// Property lease near Lviv, still open, under 50 000 UAH
{"procedure_type": ["legitimatePropertyLease"], "open_for_bids": true,
"region": "Львів", "max_value": 50000, "limit": 10}
// Everything privatisation-related that concluded in July 2026
{"procedure_type": ["smallPrivatization", "largePrivatization"], "status": ["complete"],
"changed_since": "2026-07-01", "changed_until": "2026-07-31", "scan_pages": 25}Returns compact summaries plus a scanned block. An empty result means "not in the scanned
window", never "does not exist".
Owner vs seller
On the legitimatePropertyLease family the two roles are different organisations. A room in a
university building is auctioned by the regional SPFU office, so the university appears as
propertyOwner (балансоутримувач) and never as seller. Filtering by seller for an institution
returns nothing at all.
// Everything Lviv Polytechnic put up for lease this year — EDRPOU is exact, prefer it to a name
{"procedure_type": ["legitimatePropertyLease"], "property_owner_edrpou": "02071010",
"changed_since": "2026-01-01", "changed_until": "2026-08-06", "scan_pages": 40}Only that family publishes the distinction; for every other programme relatedOrganizations is
absent, the seller owns what it sells, and property_owner matches nothing. There is no silent
fallback to text search — combine with keyword if you need one.
get_auction
Everything about one auction. For deadlines alone use get_auction_timeline; for the outcome
alone use get_auction_results — both return far less.
Parameter | Type | Notes |
|
| Public auction id or 24-character procedure id. |
|
| Sections to expand. Default |
include values: items (area, cadastral number, address, classification) · terms
(starting price, minimal step, guarantee deposit, registration fee, lease duration, conditions,
restrictions) · documents · questions · bids · awards · contracts.
// Full picture before deciding whether to bid
{"auction": "SPD001-UA-20260806-70620",
"include": ["items", "terms", "documents", "questions"]}
// Minimal lookup
{"auction": "LRE001-UA-20260708-03894"}get_auction_timeline
The stage clock: what has passed, what is running, what is next, how long is left to bid.
Parameter | Type | Notes |
|
| Public auction id or procedure id. |
|
| Also list archived revisions, showing when the seller amended the terms. Default |
{"auction": "LRE001-UA-20260708-03894"}
{"auction": "LRE001-UA-20260708-03894", "include_revisions": true}Returns the status with its plain-language meaning, every stage marked
past/current/upcoming, the next deadline, and bidding.closesAt / stillOpen /
hoursRemaining.
get_auction_results
How an auction ended. Works on in-progress auctions too — reports outcome: "in_progress".
Parameter | Type | Notes |
|
| Public auction id or procedure id. No other parameters. |
{"auction": "SPE001-UA-20260729-69703"}Returns outcome (contract_signed · winner_determined · ended_without_winner ·
cancelled_by_seller · in_progress), starting vs final price with priceUpliftPercent, bid
counts, attemptNumber (>1 means the lot failed to sell before), awards, contracts and
cancellation reasons.
get_auction_documents
Published files with direct public download URLs.
Parameter | Type | Notes |
|
| Public auction id or procedure id. |
|
| Case-insensitive substring: |
|
|
|
|
| Also list earlier revisions of replaced files. Default |
// Just the technical specification
{"auction": "SPD001-UA-20260806-70620", "document_type": "technicalSpecifications"}
// The complete paper trail including the signed contract
{"auction": "SPD001-UA-20260806-70620",
"include_attachments_of": ["auction", "awards", "contracts"]}Documents attached to bids are never published.
find_comparable_auctions
Valuation and risk: what similar lots go for and how often they sell.
Parameter | Type | Notes |
|
| The reference auction. |
|
| What a comparable must share. Default |
|
| Default |
|
| 1–50. Default 15. |
|
| Widen the sample when |
// Price benchmark for a land lease (default matching)
{"auction": "LRE001-UA-20260708-03894",
"match_on": ["sellingMethod", "classification"]}
// What similar assets are on the market right now
{"auction": "SPD001-UA-20260806-70620", "concluded_only": false, "limit": 25}Re-listings of the same lot are excluded, so one asset is not counted twice.
track_auction_changes
Cursor-based monitoring. Repeated calls make forward progress without re-reading the same activity.
Parameter | Type | Notes |
|
| ISO instant to watch from. Default 24 hours ago. On follow-up polls pass back the previous response's |
|
| Optional upper bound. |
| Narrow the watch to one niche. | |
|
| 1–100. Default 30. |
|
| Raise when a busy window truncates. |
// First poll of a niche
{"procedure_type": ["landRental"], "region": "Полтав", "limit": 20}
// Follow-up poll using the cursor from the previous response
{"procedure_type": ["landRental"], "region": "Полтав",
"since": "2026-08-06T06:27:21.880000Z"}Each change carries an isNew flag distinguishing brand-new listings from updates. The cursor
is inclusive, so the last auction may repeat once.
analyze_auction_market
Volume and trend questions rather than individual lots.
Parameter | Type | Notes |
|
|
|
|
| Period to analyse. Omit both for the most recent activity. |
| Narrow the population before aggregating. | |
|
| Default 15. Raise for a larger sample. |
// Which regions had the most land activity recently
{"procedure_type": ["landRental", "landSell"], "group_by": "region", "scan_pages": 25}
// How privatisation performed in July 2026
{"procedure_type": ["smallPrivatization"], "since": "2026-07-01", "until": "2026-07-31",
"group_by": "sellingMethod", "scan_pages": 30}Returns count/total/mean/median/min/max starting prices, a status histogram and
soldSharePercentOfSettled — where settled means complete, unsuccessful or cancelled
only, so in-flight procedures do not inflate it. These figures describe the scanned window, not
the whole catalogue.
list_procedure_types
The vocabulary the other tools filter on. Cached; no network cost after the first call. Call
this rather than guessing a procedure_type — an unrecognised value silently returns nothing.
Parameter | Type | Notes |
|
| Substring, e.g. |
|
| Default |
{"filter": "land"}
{}Returns 33 programme families with their auction formats, the exact sellingMethod values, and
the three-letter auction-id prefix each produces (LRE = landRental-english, SPE =
smallPrivatization-english…), plus what each of the ten statuses means.
get_publication_constraints
The only forward-looking tool: if a lot is published today, how soon may the auction run.
Parameter | Type | Notes |
|
| A selling method such as |
{"procedure_type": "landRental-english"}
{"procedure_type": "smallPrivatization"}Returns earliestAuctionStart and noticeDays. Computed live, so it is not cached.
Install
git clone https://github.com/VladyslavMykhailyshyn/prozorro-sale-mcp-server.git
cd prozorro-sale-mcp-server
npm install
npm run buildClaude Code
claude mcp add prozorro-sale -- node /absolute/path/to/prozorro-sale-mcp-server/build/index.jsClaude Desktop / any MCP client
{
"mcpServers": {
"prozorro-sale": {
"command": "node",
"args": ["/absolute/path/to/prozorro-sale-mcp-server/build/index.js"]
}
}
}No API key is needed — Prozorro.Sale publishes this data openly.
Configuration
All optional; see .env.example. The variables are read from the process environment, so set
them in your MCP client's env block.
Variable | Default | Purpose |
|
|
|
| — | Full base URL override |
|
| Per-request timeout |
|
| Feed-page cache lifetime |
|
| Feed pages a search scans by default (100 auctions each) |
|
| Hard ceiling per call |
|
| Retries on network/5xx errors |
The one limitation worth understanding
Prozorro.Sale publishes no full-catalogue search API. The open-data surface is a change feed ordered by modification time, plus a per-selling-method feed of the 100 most recent auctions. There is no "all currently open auctions" endpoint to call.
This server therefore searches by scanning, and it is explicit about what it scanned. Every
discovery tool returns a scanned block:
{
"scanned": {
"coveredFrom": "2026-08-06T06:12:41.000Z",
"coveredTo": "now",
"recordsScanned": 614,
"truncated": true,
"note": "Every auction changed in the last 3h was examined (614 records over 3 segments), then the page budget ran out while reaching further back. Auctions last changed before that are NOT fully represented — raise \"scan_pages\" or set an explicit window to go deeper."
}
}Two consequences to keep in mind:
Name the asset programme when you can.
procedure_type: ["smallPrivatization"]makes the server query the per-type feeds directly, which covers the 100 most recent auctions of each matching selling method instead of whatever happened to be busiest platform-wide.An empty result means "not in the scanned window", not "does not exist." Widen with
scan_pages, or passchanged_sinceto scan a specific historical period.
The feed only runs forward in time from a cursor, so the newest records always sit at the end of a crawl. Starting at an arbitrary "7 days ago" would spend the whole page budget on old records and never reach the present. Instead the crawler walks a short window ending at now and then extends backwards in doubling segments while budget remains — so current auctions are always covered first.
Data notes
Bidder and buyer identities are redacted upstream and appear as
[redacted].Document
downloadUrlvalues are public and can be fetched directly.Bid amounts become visible only after an auction concludes.
auctionIdencodes its programme and publication date:LRE(landRental-english) + serial-UA-+20260708+ serial.
Development
npm run typecheck # tsc --noEmit
npm run build # compile to build/
npm run smoke # build, then exercise all 10 tools against the live APIscripts/smoke.mjs is an integration check, not a unit test — it hits production
Prozorro.Sale and prints a one-line summary per tool.
License
ISC
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceMCP server for Spain's official BOE auction portal: search judicial foreclosures, notarial and tax-agency auctions, get consolidated per-auction detail (assets, lots, bids, authority contacts) and computed legal thresholds (art. 671 LEC). Clean JSON, GDPR-safe, no headless browser.Last updated2AGPL 3.0
- Alicense-qualityCmaintenanceProvides access to Ukraine's public procurement data (ProZorro) via MCP, keyless and integrated with Pipeworx gateway for AI agents.Last updated13MIT
- Alicense-qualityCmaintenanceMCP server for accessing Moldova Government Procurement (MTender) data, allowing AI agents to query tender information without an API key.Last updated10MIT
- AlicenseAqualityAmaintenanceMCP server providing read access to Swiss public procurement data via the official simap.ch API, covering all cantons and the Confederation with intraday updates. It enables searching tenders, awards, construction codes, and procurement offices through natural language queries.Last updated9MIT
Related MCP Connectors
ProZorro MCP — Ukraine government procurement (keyless).
Read-only MCP server for searching Japan government procurement bid information from the KKJ portal.
GSA Auctions API MCP — US federal government surplus auctions (keyed).
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/VladyslavMykhailyshyn/prozorro-sale-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server