QuickBooks Online MCP Server
Provides tools for managing QuickBooks Online entities (customers, invoices, bills, vendors, accounts, etc.) and generating financial reports such as Balance Sheet, Profit and Loss, Cash Flow, Trial Balance, and General Ledger.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@QuickBooks Online MCP ServerShow me the last 10 invoices"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
QuickBooks Online MCP Server
A local Model Context Protocol (MCP) server that exposes QuickBooks Online data and actions as callable tools for MCP-compatible AI assistants.
π Overview
QuickBooks Online MCP Server provides a standard MCP interface for working with QuickBooks Online data. It runs locally as a stdio subprocess and authenticates to a QuickBooks Online company through Intuit OAuth 2.0.
The server is designed for AI-assisted workflows where an MCP-compatible client needs to read or manage QuickBooks Online entities, search accounting records, or retrieve financial reports through structured tools.
Related MCP server: qb-mcp
β¨ Features
MCP server for QuickBooks Online
OAuth 2.0 authentication with Intuit
Support for sandbox and production QuickBooks Online environments
Tools for QuickBooks entities such as customers, invoices, bills, vendors, payments, accounts, items, and more
Financial report tools including Balance Sheet, Profit and Loss, Cash Flow, Trial Balance, and General Ledger
Optional environment flags to disable write, update, or delete tool categories
TypeScript implementation with Zod validation
Jest test suite referenced by the upstream documentation
π§° Tool Coverage
The server exposes QuickBooks Online functionality through MCP tools.
Entities
Supported entity categories include:
Customer
Invoice
Estimate
Bill
Vendor
Employee
Account
Item
Journal Entry
Bill Payment
Purchase
Payment
Sales Receipt
Credit Memo
Refund Receipt
Purchase Order
Vendor Credit
Deposit
Transfer
Time Activity
Class
Department
Term
Payment Method
Tax Code
Tax Rate
Tax Agency
Company Info
Attachable
Most entities support create, get, update, delete, and search operations where QuickBooks Online supports those actions. Some entities are read-only or do not support deletion.
Reports
Available report tools include:
Report | Tool |
Balance Sheet |
|
Profit and Loss |
|
Cash Flow |
|
Trial Balance |
|
General Ledger |
|
Customer Sales |
|
Aged Receivables |
|
Aged Receivables Detail |
|
Customer Balance |
|
Aged Payables |
|
Vendor Expenses |
|
π Authentication
This server uses Intuit OAuth 2.0. To connect it to QuickBooks Online, you need an app in the Intuit Developer Portal and a completed OAuth authorization flow.
Required environment values include:
QUICKBOOKS_CLIENT_ID=your_client_id
QUICKBOOKS_CLIENT_SECRET=your_client_secret
QUICKBOOKS_ENVIRONMENT=sandbox
QUICKBOOKS_REFRESH_TOKEN=your_refresh_token
QUICKBOOKS_REALM_ID=your_realm_idOptional flags can restrict registered tool categories:
QUICKBOOKS_DISABLE_WRITE=true
QUICKBOOKS_DISABLE_UPDATE=true
QUICKBOOKS_DISABLE_DELETE=trueRead tools such as get_* and search_* remain available.
Sandbox and production notes
Sandbox usage can use a local callback such as
http://localhost:8000/callback.Production OAuth setup requires a public HTTPS redirect URI for the initial authorization.
After the initial OAuth handshake, the server runs locally using the stored refresh token until reauthorization is required.
βοΈ Basic Setup
git clone https://github.com/your-username/mcp-quickbooks-online.git
cd mcp-quickbooks-online
npm install
npm run buildCreate a .env file from the provided environment template and fill in the QuickBooks Online OAuth values.
cp .env.example .envTo run the OAuth helper described by the upstream documentation:
npm run authπ€ MCP Client Configuration
Example MCP configuration:
{
"mcpServers": {
"quickbooks": {
"command": "node",
"args": ["path/to/mcp-quickbooks-online/dist/index.js"],
"env": {
"QUICKBOOKS_CLIENT_ID": "your_client_id",
"QUICKBOOKS_CLIENT_SECRET": "your_client_secret",
"QUICKBOOKS_REFRESH_TOKEN": "your_refresh_token",
"QUICKBOOKS_REALM_ID": "your_realm_id",
"QUICKBOOKS_ENVIRONMENT": "sandbox",
"QUICKBOOKS_DISABLE_WRITE": "false",
"QUICKBOOKS_DISABLE_UPDATE": "false",
"QUICKBOOKS_DISABLE_DELETE": "false"
}
}
}
}π§ͺ Development
Build the project:
npm run buildRun tests:
npm testThe upstream README references a Jest test suite and TypeScript implementation.
π§ Tool Naming
Tool names follow a {verb}_{entity} convention.
Prefix | Category | Restriction flag |
| Write |
|
| Update |
|
| Delete |
|
| Read | Always available |
β FAQ
What is this project used for?
It provides an MCP interface for QuickBooks Online so AI assistants and other MCP-compatible clients can call QuickBooks-related tools in a structured way.
Does it run as a hosted service?
No. The documented behavior is for a local MCP server that runs as a stdio subprocess on the userβs machine.
Is OAuth required?
Yes. QuickBooks Online access requires Intuit OAuth 2.0 through an app created in the Intuit Developer Portal.
Can write operations be disabled?
Yes. Environment flags can suppress create, update, and delete tools while leaving read tools available.
Does it support reports?
Yes. The documented report tools include Balance Sheet, Profit and Loss, Cash Flow, Trial Balance, General Ledger, customer reports, receivables reports, payables reports, and vendor expenses.
π License
MIT License. See LICENSE for details.
π Acknowledgments
This project is based on Intuitβs QuickBooks Online MCP Server and uses the Model Context Protocol.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/FlockDeveloperAlter/quickbooks-online-mcp-server-integration'
If you have feedback or need assistance with the MCP directory API, please join our Discord server