Peil for VS Code
app.peil/peil-mcp
Log hours, draft invoices and check where you stand — finance for Dutch freelancers.
client:VS Code
transport:stdio
runtime:pypi
Install Peil in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "peil-api-key",
"description": "PEIL_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "peil-api-url",
"description": "PEIL_API_URL",
"password": true
}
],
"servers": {
"peil-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"peil-mcp"
],
"env": {
"PEIL_API_KEY": "${input:peil-api-key}",
"PEIL_API_URL": "${input:peil-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs