hilma_recent

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

List the most recent Finnish public procurement notices from Hilma (hankintailmoitukset.fi) — new government tenders, julkiset hankinnat, and contract notices published in Finland over the last N days (default 7). Convenience wrapper over hilma_search for “what new Finnish tenders were published this week” style questions; supports national-only and plans-excluded views.

Parameters

NameTypeRequiredDescription
daysnumber,stringnoLook-back window in days (1–365). Default 7.
topnumber,stringnoNumber of notices to return (1–100). Default 20.
national_onlybooleannotrue → only national (below-EU-threshold) procurement notices.
exclude_plansbooleannotrue → published notices only, procurement plans filtered out.

Example call

Arguments

{
  "days": 7,
  "top": 20,
  "_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_recent","arguments":{"days":7,"top":20,"_apiKey":"your-hilma-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('hilma_recent', {
  "days": 7,
  "top": 20,
  "_apiKey": "your-hilma-api-key"
});

More examples

{
  "days": 30,
  "national_only": true,
  "exclude_plans": true,
  "_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