hilma_notice_lookup

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

Look up a single Finnish public procurement notice on Hilma (hankintailmoitukset.fi) by its Hilma notice number (e.g. “2026-012345”) or index document id. Returns the index metadata for that notice — buyer organisation, publication date, CPV codes, procurement project id, and national/framework/dynamic-purchasing flags.

Parameters

NameTypeRequiredDescription
notice_numberstringnoHilma notice number, e.g. “2026-012345”. Provide this or “id”.
idstringnoIndex document id from a previous hilma_search result. Provide this or “notice_number”.

Example call

Arguments

{
  "notice_number": "2026-012345",
  "_apiKey": "your-hilma-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/hilma/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hilma_notice_lookup","arguments":{"notice_number":"2026-012345","_apiKey":"your-hilma-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('hilma_notice_lookup', {
  "notice_number": "2026-012345",
  "_apiKey": "your-hilma-api-key"
});

More examples

{
  "id": "abc123def456",
  "_apiKey": "your-hilma-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 4, 2026