doffin_recent

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

List the latest Norwegian government tenders and contract awards published on Doffin (Norway’s national public-procurement / offentlige anskaffelser database) in the last N days, newest first. Great for monitoring fresh Norwegian anbud, new kunngjøringer, contract award results (tildelinger), and upcoming bid deadlines. Optionally narrow to one or more notice types (tender/competition, award/result, planning, …) or a free-text query. Each hit gets a public doffin.no notice URL attached. Requires a free Doffin API key via _apiKey when a platform key is unavailable.

Parameters

NameTypeRequiredDescription
daysnumber,stringnoLookback window in days (1-90). Default 7 — notices published in the last week.
typestring,arraynoNotice type filter — one value or an array; plain words work: “tender”/“competition” → COMPETITION, “award”/“result” → RESULT, “planning” → PLANNING, etc. Omit for all types.
itemsstringno
querystringnoOptional free-text filter (Norwegian works best), e.g. “rammeavtale”, “skole”, “programvare”.
limitnumber,stringnoNumber of hits to return (1-100). Default 10.
pagenumber,stringnoResults page for pagination. Default first page.
_apiKeystringnoDoffin API subscription key (free — sign up at ${PORTAL_URL}). Injected automatically when the platform key is configured.

Example call

Arguments

{
  "days": 7,
  "type": "RESULT",
  "_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_recent","arguments":{"days":7,"type":"RESULT","_apiKey":"your-doffin-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('doffin_recent', {
  "days": 7,
  "type": "RESULT",
  "_apiKey": "your-doffin-api-key"
});

More examples

{
  "days": 30,
  "query": "rammeavtale",
  "type": [
    "COMPETITION",
    "PRE_ANNOUNCEMENT"
  ],
  "limit": 25,
  "_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