Skip to content
VS Code

taxformatter for VS Code

io.github.sean-bravo/taxformatter

Parse crypto CSVs and bank PDFs into clean transaction data for Koinly, TurboTax, CoinLedger.

client:VS Code transport:stdio runtime:npm

Install taxformatter in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "taxformatter-api-key",
      "description": "TAXFORMATTER_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "taxformatter": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@taxformatter/mcp-server"
      ],
      "env": {
        "TAXFORMATTER_API_KEY": "${input:taxformatter-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

taxformatter in other clients