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
| Name | Type | Required | Description |
|---|---|---|---|
days | number,string | no | Look-back window in days (1–365). Default 7. |
top | number,string | no | Number of notices to return (1–100). Default 20. |
national_only | boolean | no | true → only national (below-EU-threshold) procurement notices. |
exclude_plans | boolean | no | true → 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.