QuickBooks MCP Server
by nikhilgy
This server enables Claude Desktop to interact with QuickBooks data. It allows you to query and retrieve information from your QuickBooks account using natural language through Claude.
View on GitHub
Last updated: N/A
Requirements:
- Python 3.10 or higher
Step 1. Install uv:
- MacOS/Linux: curl -LsSf https://astral.sh/uv/install.sh | sh
- Windows: powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
Step 2. Configure Claude Desktop
- Download Claude Desktop.
- Launch Claude and go to Settings > Developer > Edit Config.
- Modify
claude_desktop_config.json
with:
{
"mcpServers": {
"QuickBooks": {
"command": "<home_path>/.local/bin/uv",
"args": [
"--directory",
"<absolute_path_to_quickbooks_mcp_folder>",
"run",
"main_quickbooks_mcp.py"
],
"env": {
"QUICKBOOKS_CLIENT_ID": "<client_id>",
"QUICKBOOKS_CLIENT_SECRET": "<client_secret>",
"QUICKBOOKS_REFRESH_TOKEN": "<refresh_token>",
"QUICKBOOKS_COMPANY_ID": "<company_id>"
}
},
"filesystem": {
"command": "<home_path>/.local/bin/uv",
"args": [
"--directory",
"<absolute_path_to_quickbooks_mcp_folder>",
"run",
"filesystem.py"
]
}
}
}
- Relaunch Claude Desktop.
The first time you open Claude Desktop with these setting it may take 10-20 seconds before the QuickBooks tools appear in the interface due to the installation of the required packages and the download of the most recent QuickBooks API documentation.
Everytime you launch Claude Desktop, the most recent QuickBooks API tools are made available to your AI assistant.
Step 3. Launch Claude Desktop and let your assistant help you
Examples
Query Accounts
Get all accounts from QuickBooks.
Query Bills
Get all bills from QuickBooks created after 2024-01-01.
Query Customers
Get all customers from QuickBooks.