hilma mcp for VS Code
io.github.aimiten/hilma-mcp
MCP server for Finnish public procurement notices (Hilma). Built by Aimiten.
client:VS Code
transport:stdio
runtime:npm
Install hilma mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "hilma-api-key",
"description": "HILMA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "hilma-read-api-key",
"description": "HILMA_READ_API_KEY",
"password": true
}
],
"servers": {
"hilma-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"hilma-mcp"
],
"env": {
"HILMA_API_KEY": "${input:hilma-api-key}",
"HILMA_READ_API_KEY": "${input:hilma-read-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs