Skip to content
VS Code

firma for VS Code

io.github.evan-moon/firma

Local-first portfolio tracker for overseas investors. Claude reads and writes your finances via MCP.

client:VS Code transport:stdio runtime:npm

Install firma in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "finnhub-api-key",
      "description": "FINNHUB_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "firma": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "firma-app"
      ],
      "env": {
        "FINNHUB_API_KEY": "${input:finnhub-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

firma in other clients