wfirma mcp for VS Code
io.github.agente-dev/wfirma-mcp
Unofficial read-only MCP server for the wFirma API v2: invoices, contractors, expenses, payments.
client:VS Code
transport:stdio
runtime:npm
Install wfirma mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wfirma-access-key",
"description": "WFIRMA_ACCESS_KEY",
"password": true
},
{
"type": "promptString",
"id": "wfirma-secret-key",
"description": "WFIRMA_SECRET_KEY",
"password": true
},
{
"type": "promptString",
"id": "wfirma-app-key",
"description": "WFIRMA_APP_KEY",
"password": true
}
],
"servers": {
"wfirma-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"wfirma-mcp"
],
"env": {
"WFIRMA_ACCESS_KEY": "${input:wfirma-access-key}",
"WFIRMA_SECRET_KEY": "${input:wfirma-secret-key}",
"WFIRMA_APP_KEY": "${input:wfirma-app-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs