Skip to content
VS Code

flowcheck for VS Code

io.github.eliaskress/flowcheck

Stripe payouts, Shopify orders, and bank transactions unified for reconciliation and cash flow

client:VS Code transport:stdio runtime:npm

Install flowcheck in VS Code

.vscode/mcp.json

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

flowcheck in other clients