dk_tender_recent

Pack: udbud-dk · Endpoint: https://gateway.pipeworx.io/udbud-dk/mcp

List the latest Danish government tenders and contract awards published on udbud.dk (Denmark’s national public-procurement portal) in the last N days. Great for monitoring new Danish contract notices, fresh awards (tildelinger), direct awards, and upcoming bid deadlines — including national below-EU-threshold udbud that TED misses. Optionally restrict to one notice type or to currently active procurements. Returns shaped notices newest-first with notice id, title, buyer with CVR, CPV code, estimated value in DKK, deadlines, and the public udbud.dk URL.

Parameters

NameTypeRequiredDescription
daysnumber,stringnoLookback window in days (1-90). Default 7 — notices published in the last week.
notice_typestringnoFilter by notice type. Accepts an udbud.dk code or a plain word: “EU_UDBUD”/“eu”, “NATIONALE_UDBUD”/“national”, “TILDELINGER”/“award”, “DIREKTE_TILDELINGER”/“direct award”, “FORHAANDSMEDDELELSER”/“prior information”, “MARKEDSDIALOGER”/“market dialogue”, “FORVENTET_INDKOEB”/“planned”, “KONTRAKTAENDERINGER”/“modification”. Omit for all types.
statusstringno”all” (default) includes awards and closed notices; “active” restricts to currently open procurements.
limitnumber,stringnoNumber of notices to return (1-50). Default 10.
pagenumber,stringnoONE-based results page for pagination (first page is 1). Default 1.

Example call

Arguments

{
  "days": 7,
  "limit": 10
}

curl

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_recent","arguments":{"days":7,"limit":10}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('dk_tender_recent', {
  "days": 7,
  "limit": 10
});

More examples

{
  "days": 30,
  "notice_type": "award",
  "status": "all",
  "limit": 25
}

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.

Regenerated from source · build September 4, 2026