dk_tender_detail
Pack: udbud-dk · Endpoint: https://gateway.pipeworx.io/udbud-dk/mcp
Fetch one Danish public-procurement notice from udbud.dk (Denmark government tender portal) in full detail. Returns the shaped notice summary — title, buyer (ordregiver) with CVR, publication date, CPV code, notice type, estimated value in DKK, deadlines, lot count, execution place, tender documents — plus the complete notice text extracted from the official eForms rendering (English version when available). Requires the notice_id, notice_version, and publication_number exactly as returned by dk_tender_search or dk_tender_recent.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
notice_id | string | yes | Notice UUID from search results, e.g. “14f9c6aa-740c-46ce-95a8-47df319d7de5”. |
publication_number | string | yes | Notice publication number from search results (publication_number field), e.g. “00724546-2024”. |
notice_version | string | no | Notice version from search results, e.g. “01”. Default “01”. |
language | string | no | Language of the full notice text: “en” (default, machine-assisted English) or “da” (original Danish). |
max_text_chars | number,string | no | Maximum characters of full notice text to return (0-30000). Default 8000. Set 0 to skip the full text and return only the summary. |
Example call
curl -X POST https://gateway.pipeworx.io/udbud-dk/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dk_tender_detail","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"udbud-dk": {
"url": "https://gateway.pipeworx.io/udbud-dk/mcp"
}
}
}
See Getting Started for client-specific install steps.