Skip to content
VS Code

QuickBooks Online for VS Code

io.github.wyre-technology/qbo-mcp

MCP server for QuickBooks Online — accounts, customers, invoices, bills, and reports.

client:VS Code transport:stdio runtime:oci

Install QuickBooks Online in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "qbo-client-id",
      "description": "QBO_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "qbo-client-secret",
      "description": "QBO_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "qbo-refresh-token",
      "description": "QBO_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "qbo-realm-id",
      "description": "QBO_REALM_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "qbo-environment",
      "description": "QBO_ENVIRONMENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "auth-mode",
      "description": "AUTH_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "qbo-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-technology/qbo-mcp:v1.6.4"
      ],
      "env": {
        "QBO_CLIENT_ID": "${input:qbo-client-id}",
        "QBO_CLIENT_SECRET": "${input:qbo-client-secret}",
        "QBO_REFRESH_TOKEN": "${input:qbo-refresh-token}",
        "QBO_REALM_ID": "${input:qbo-realm-id}",
        "QBO_ENVIRONMENT": "${input:qbo-environment}",
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "AUTH_MODE": "${input:auth-mode}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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