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
| Name | Type | Required | Description |
|---|---|---|---|
doffin_id | string | yes | Doffin notice id, e.g. “2023-100282” (format: year-number). |
_apiKey | string | no | Doffin 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.