doffin_notice

Pack: doffin · Endpoint: https://gateway.pipeworx.io/doffin/mcp

Fetch the full document for one Norwegian public-procurement notice from Doffin (Norway’s official government tender database, doffin.no) by its Doffin id, e.g. “2023-100282”. Returns the complete notice as published — buyer, description, CPV codes, deadlines, values in NOK, and award details where present — plus the public doffin.no URL. Use ids from doffin_search or doffin_recent results. Requires a free Doffin API key via _apiKey when a platform key is unavailable.

Parameters

NameTypeRequiredDescription
doffin_idstringyesDoffin notice id, e.g. “2023-100282” (format: year-number).
_apiKeystringnoDoffin API subscription key (free — sign up at ${PORTAL_URL}). Injected automatically when the platform key is configured.

Example call

Arguments

{
  "doffin_id": "2024-150042",
  "_apiKey": "your-doffin-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/doffin/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"doffin_notice","arguments":{"doffin_id":"2024-150042","_apiKey":"your-doffin-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('doffin_notice', {
  "doffin_id": "2024-150042",
  "_apiKey": "your-doffin-api-key"
});

Connect

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

{
  "mcpServers": {
    "doffin": {
      "url": "https://gateway.pipeworx.io/doffin/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 4, 2026