nl_tender_detail

Pack: netherlands-tenders · Endpoint: https://gateway.pipeworx.io/netherlands-tenders/mcp

Fetch one Dutch public-procurement notice from TenderNed (Netherlands government tender platform) by its publication id, e.g. “433909”. Returns the full shaped aanbesteding notice: title, buyer/opdrachtgever, complete description, notice type, procedure, legal framework, national/European scope, CPV codes with Dutch labels, NUTS region codes, keywords, award status (gegund), related publications, official PDF link, and the public TenderNed URL. Use the id from nl_tender_search or nl_tender_recent results.

Parameters

NameTypeRequiredDescription
publication_idstring,numberyesTenderNed publication id (publicatieId), e.g. “433909” or 433910.

Example call

Arguments

{
  "publication_id": "433909"
}

curl

curl -X POST https://gateway.pipeworx.io/netherlands-tenders/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nl_tender_detail","arguments":{"publication_id":"433909"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('nl_tender_detail', {
  "publication_id": "433909"
});

More examples

{
  "publication_id": 433910
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "netherlands-tenders": {
      "url": "https://gateway.pipeworx.io/netherlands-tenders/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 4, 2026