MCP server for QuickBooks Online β accounts, customers, invoices, bills, and reports.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Model Context Protocol (MCP) server for the QuickBooks Online Accounting API. Exposes 130+ tools across 22 QBO entities plus 10 financial reports for Claude and other MCP-compatible clients.
qbo_invoices_get renders as a read-only interactive card in MCP Apps hosts (Claude Desktop/web) β customer, status, dates, line items, totals β neutral by default, brandable via window.__BRAND__ injection or MCP_BRAND_* env vars. Non-App hosts see the same JSON payload (plus a _card field).Note on registry auth: This server depends only on public npm packages, so the Cloudflare and DigitalOcean cloud builders install its dependencies anonymously β no token is required for one-click deploy. (If a future release adds a private
@wyre-ai/*dependency, you would supply a GitHub PAT withread:packagesas a build variable βNODE_AUTH_TOKENfor Cloudflare Workers, a build-timeGITHUB_TOKENsecret for DigitalOcean.)Installing the published package: The released package is published to the GitHub Packages npm registry, which requires authentication on every install (even for public packages). To install it, authenticate npm to
npm.pkg.github.comwith a GitHub PAT that hasread:packages:
The server listens on http://0.0.0.0:8080/mcp by default.
| Variable | Required | Default | Description |
|---|---|---|---|
QBO_ACCESS_TOKEN | Yes (env mode) | β | QuickBooks Online OAuth2 access token |
QBO_REALM_ID | Yes (env mode) | β | QuickBooks Online company (realm) ID |
QBO_ENV | No | production | API environment: production or sandbox |
QBO_CREDENTIALS_FILE | No | β | Path to a dotenv-format file re-read on every request; its QBO_ACCESS_TOKEN / QBO_REALM_ID / QBO_ENV override the environment variables (see Token rotation) |
MCP_TRANSPORT | No | stdio | Transport type: stdio or http |
MCP_HTTP_PORT | No | 8080 | HTTP server port |
MCP_HTTP_HOST | No | 0.0.0.0 | HTTP server bind address |
AUTH_MODE | No | env | Auth mode: env or gateway |
MCP_BRAND_NAME | No | β | Brand name shown on the MCP Apps invoice card (card is neutral when unset) |
MCP_BRAND_LOGO_URL | No | β | Logo URL for the invoice card |
MCP_BRAND_PRIMARY_COLOR | No | #2563eb | Invoice card primary color |
MCP_BRAND_ACCENT_COLOR | No | #e5e7eb | Invoice card accent color |
MCP_BRAND_BG | No | #ffffff | Invoice card background color |
MCP_BRAND_TEXT | No | #333333 | Invoice card text color |
The server does not handle the OAuth flow β it consumes a pre-obtained access token. Two modes:
env mode (default). Token comes from QBO_ACCESS_TOKEN (or from the file named by QBO_CREDENTIALS_FILE, which wins when both are set). Single tenant.
gateway mode. Token comes from per-request HTTP headers, isolated through AsyncLocalStorage so concurrent requests never share credentials. Set AUTH_MODE=gateway and send:
| Header | Required | Description |
|---|---|---|
X-Qbo-Access-Token | Yes | OAuth2 access token |
X-Qbo-Realm-Id | Yes | Company (realm) ID |
X-Qbo-Environment | No | production or sandbox (defaults to production) |
When QBO rejects the access token, the server returns an MCP error whose text begins with the literal prefix QBO_UNAUTHORIZED:. The intended contract is that the gateway detects this prefix, refreshes the OAuth token, and retries the request.
QBO access tokens expire after ~60 minutes, so env-mode deployments typically rotate them with a cron job. A rotated token in a Docker env_file never reaches a running container: Docker injects env_file only at container creation, so docker restart keeps the old environment and the refresh loop silently becomes a no-op until calls start failing with QBO_UNAUTHORIZED / Token revoked (#63).
Set QBO_CREDENTIALS_FILE to skip environment reinjection entirely. The server re-reads the file on every request, so a rotation takes effect immediately β no restart or recreate at all:
Your refresh job then just rewrites ./secrets/qbo.env (dotenv format: QBO_ACCESS_TOKEN=..., optionally QBO_REALM_ID=... and QBO_ENV=...) and is done β drop the docker restart from the script. Mount the containing directory rather than the file itself: tools like sed -i replace the file's inode, and a single-file bind mount would keep pointing at the old one. If the file is missing or unreadable, tool calls fail loudly instead of silently falling back to a stale environment token.
If you'd rather keep plain env_file injection, the rotation script must recreate the container β docker compose up -d --force-recreate β a docker restart is never enough.
Set QBO_ENV=sandbox (env mode) or X-Qbo-Environment: sandbox (gateway mode) to target Intuit's sandbox API at https://sandbox-quickbooks.api.intuit.com instead of production. Unrecognized values fail loudly (no silent fallback to production).
Tools are organized by domain. Call qbo_navigate with a domain name (e.g. customers, vendors, bills) to discover the tools in that domain. All tools are always callable β navigation is a discovery aid, not a prerequisite.
Each entity exposes some subset of list, get, create, update, search. Transactional entities support startDate/endDate filtering on the list operation. Updates are sparse and require the current SyncToken from a prior get.
Sales workflow
qbo_customers_* β list, get, create, searchqbo_invoices_* β list (Paid/Unpaid/Overdue status filter), get, create, sendqbo_estimates_* β list, get, create, updateqbo_sales_receipts_* β list, get, create, updateqbo_credit_memos_* β list, get, create, updateqbo_refund_receipts_* β list, get, create, updateqbo_payments_* β list, get, createPurchase workflow
qbo_vendors_* β list, get, create, update, searchqbo_bills_* β list, get, create, update, searchqbo_bill_payments_* β list, get, create, updateqbo_vendor_credits_* β list, get, create, updateqbo_purchases_* β list, get, create, update (point-of-sale expenses)qbo_purchase_orders_* β list, get, create, updateBank & money movement
qbo_deposits_* β list, get, create, updateqbo_transfers_* β list, get, create, updateqbo_journal_entries_* β list, get, create, update (balanced debit/credit)Products & accounts
qbo_items_* β list, get, create, update, search (products and services)qbo_accounts_* β list, get, create, update, search (chart of accounts)Classification & terms
qbo_classes_* β list, get, create, update, searchqbo_departments_* β list, get, create, update, searchqbo_terms_* β list, get, create, update, search (Net 30, etc.)qbo_payment_methods_* β list, get, create, update, searchTax & company
qbo_tax_codes_* β list, get, search (read-only)qbo_tax_rates_* β list, get, search (read-only)qbo_company_info_* β list, get (read-only singleton)People & time
qbo_employees_* β list, get, create, update, searchqbo_time_activities_* β list, get, create, update (billable time)Attachments
qbo_attachables_* β list, get, create, update (metadata only; file upload uses a separate QBO endpoint)qbo_reports_profit_and_lossqbo_reports_balance_sheetqbo_reports_cash_flowqbo_reports_trial_balanceqbo_reports_general_ledgerqbo_reports_aged_receivablesqbo_reports_aged_payablesqbo_reports_customer_salesqbo_reports_customer_balanceqbo_reports_vendor_expensesqbo_expenses_list_purchases, qbo_expenses_get_purchase, qbo_expenses_list_bills, qbo_expenses_get_bill remain available. New work should use the dedicated qbo_purchases_* and qbo_bills_* tool families, which add create/update/search.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/quickbooks-online)<a href="https://allmcps.com/mcp/quickbooks-online"><img src="https://allmcps.com/api/badge/quickbooks-online?style=directory" alt="QuickBooks Online on AllMCPs" /></a>