Skip to content
VS Code

QuickBooks Online for VS Code

io.github.mindstone/mcp-server-quickbooks

QuickBooks Online MCP server: invoices, bills, customers, vendors, employees, and accounts

client:VS Code transport:stdio runtime:npm

Install QuickBooks Online in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "quickbooks-client-id",
      "description": "QUICKBOOKS_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "quickbooks-client-secret",
      "description": "QUICKBOOKS_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "quickbooks-refresh-token",
      "description": "QUICKBOOKS_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "quickbooks-realm-id",
      "description": "QUICKBOOKS_REALM_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "quickbooks-environment",
      "description": "QUICKBOOKS_ENVIRONMENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-host-bridge-state",
      "description": "MCP_HOST_BRIDGE_STATE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mindstone-rebel-bridge-state",
      "description": "MINDSTONE_REBEL_BRIDGE_STATE",
      "password": true
    }
  ],
  "servers": {
    "mcp-server-quickbooks": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mindstone/mcp-server-quickbooks"
      ],
      "env": {
        "QUICKBOOKS_CLIENT_ID": "${input:quickbooks-client-id}",
        "QUICKBOOKS_CLIENT_SECRET": "${input:quickbooks-client-secret}",
        "QUICKBOOKS_REFRESH_TOKEN": "${input:quickbooks-refresh-token}",
        "QUICKBOOKS_REALM_ID": "${input:quickbooks-realm-id}",
        "QUICKBOOKS_ENVIRONMENT": "${input:quickbooks-environment}",
        "MCP_HOST_BRIDGE_STATE": "${input:mcp-host-bridge-state}",
        "MINDSTONE_REBEL_BRIDGE_STATE": "${input:mindstone-rebel-bridge-state}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

QuickBooks Online in other clients