streamable-httpMITupdated 10d ago
Greek public procurement, queryable by AI agents. 1.31M acts · 66k entities · 185k chains · tenders, awards, contracts and payments linked into one process.
What can you do with Diavgis — Greek Public Procurement?
What this is
A remote Model Context Protocol server that lets an AI agent query Greek public-procurement records directly — no scraping, no PDF parsing, no local setup.
The data comes from three official sources, cross-linked:
| Source | What it is |
|---|---|
| Διαύγεια (Diavgeia) | the Greek state transparency portal — every public decision must be published there |
| ΚΗΜΔΗΣ (KIMDIS) | the central electronic registry of public contracts |
| TED | Tenders Electronic Daily, the EU-wide procurement journal |
Records that belong to the same procurement are joined into a chain, so a tender, the award that followed it, the signed contract and the payments made against it can be read as one story rather than four unrelated documents. That linkage is the reason this server exists.
Endpoint
https://mcp.diavgis.gr/mcp
Streamable HTTP. Supported protocol revisions: 2026-07-28, 2025-11-25, 2025-06-18, 2025-03-26,
2024-11-05.
Health check: https://mcp.diavgis.gr/health
Quick start
Add to your MCP client configuration:
{
"mcpServers": {
"diavgis": {
"type": "http",
"url": "https://mcp.diavgis.gr/mcp"
}
}
}
To raise rate limits, send an API key as a bearer token. Keys and their limits are at https://diavgis.gr/pricing.
{
"mcpServers": {
"diavgis": {
"type": "http",
"url": "https://mcp.diavgis.gr/mcp",
"headers": { "Authorization": "Bearer YOUR_KEY" }
}
}
}
Tools
| Tool | What it answers |
|---|---|
find_entity |
Resolve a buyer or supplier name to its ΑΦΜ — the first call when you only have a name |
search_tenders |
Search acts across all three sources — by text, buyer, supplier, CPV, region, amount, date |
expiring_contracts |
Contracts running now that expire within 0, 7, 30 or 180 days |
get_act |
Full detail of one act by Διαύγεια ΑΔΑ or ΚΗΜΔΗΣ ΑΔΑΜ |
get_entity |
Profile of a company or public body by 9-digit ΑΦΜ — name, role, spend/receipts |
get_chain |
A reconstructed procurement lifecycle: the linked sequence tender → award → contract → payment |
rank_entities |
Top buyers or suppliers, by spend or by count |
spend_by_cpv |
Committed value by CPV division, optionally for one year |
entity_counterparties |
Who an entity actually transacts with — a buyer's top suppliers, or the reverse |
get_quota |
Your plan, calls used and remaining, and the rate limits — free, not counted against the quota |
The authoritative list is always the server itself:
curl -s https://mcp.diavgis.gr/mcp \
-H 'content-type: application/json' \
-H 'MCP-Protocol-Version: 2026-07-28' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Other ways in
The same data is available without MCP:
- OCDS 1.1 — https://api.diavgis.gr/ocds · release packages, keyless, CC BY 4.0
- REST — documented at https://diavgis.gr/docs
- Markdown / llms.txt — every public page is available as clean Markdown for LLM consumption
- Web — https://diavgis.gr
Notes on the data
- Counterparties that are natural persons are redacted at source under EU and Greek data-protection law, and carry no supplier identity.
- Greek sources publish well after the issue date. The OCDS endpoint states its own settled-through date; treat anything more recent as still filling.
- Amounts use a gross basis where the source publishes only one VAT-inclusive figure. The OCDS endpoint documents this per field.
- Methodology: https://diavgis.gr/methodology
Licence
Documentation in this repository: MIT. The data served by the API is licensed CC BY 4.0 — attribute to Diavgis with a link to https://diavgis.gr.
Install
Add Diavgis — Greek Public Procurement to your client. Pick the one you use.
claude mcp add --transport http diavgis-greek-public-procurement https://mcp.diavgis.gr/mcpcodex mcp add diavgis-greek-public-procurement --url https://mcp.diavgis.gr/mcp{
"mcpServers": {
"diavgis-greek-public-procurement": {
"url": "https://mcp.diavgis.gr/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"diavgis-greek-public-procurement": {
"type": "http",
"url": "https://mcp.diavgis.gr/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"diavgis-greek-public-procurement": {
"url": "https://mcp.diavgis.gr/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"diavgis-greek-public-procurement": {
"serverUrl": "https://mcp.diavgis.gr/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
10 tools
Diavgis — Greek Public Procurement exposes 10 tools to a connected agent.
- find_entity
- Resolve a buyer or supplier **name** to its ΑΦΜ — the first call when you only have a name
- search_tenders
- Search acts across all three sources — by text, buyer, supplier, CPV, region, amount, date
- expiring_contracts
- Contracts running **now** that expire within 0, 7, 30 or 180 days
- get_act
- Full detail of one act by Διαύγεια ΑΔΑ or ΚΗΜΔΗΣ ΑΔΑΜ
- get_entity
- Profile of a company or public body by 9-digit ΑΦΜ — name, role, spend/receipts
- get_chain
- A reconstructed procurement lifecycle: the linked sequence tender → award → contract → payment
- rank_entities
- Top buyers or suppliers, by spend or by count
- spend_by_cpv
- Committed value by CPV division, optionally for one year
- entity_counterparties
- Who an entity actually transacts with — a buyer's top suppliers, or the reverse
- get_quota
- Your plan, calls used and remaining, and the rate limits — free, not counted against the quota
Score
86 / 100
Excellent
- Documentation25/25
- Maintenance25/25
- Trust16/20
- Capability8/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 2 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 10 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.3.0Latest | Aug 29, 2026 |
| 1.2.1 | Aug 27, 2026 |
| 1.2.0 | Aug 24, 2026 |
| 1.1.0 | Aug 14, 2026 |
| 1.0.0 | Aug 2, 2026 |