A
AEO Score: 0.70 / 1.00

QuickBooks Online

Accounting & Finance
Good โ€” Functional agent integration
Agent Ready
Connectable
MCP Type
API Only
Success Rate
๐ŸŸข High
Agent Activity
โ— New
Recipes
โ€”

Get Full Integration Guide

Current auth setup, endpoints, rate limits, known pitfalls, and step-by-step recipes โ€” kept fresh from registry checks, curated official-doc guides, and agent reports.

npx @kansei-link/mcp-server

Then use: search_services โ†’ get_service_detail

How to Connect QuickBooks Online to an AI Agent

Auth setup

1. Register at developer.intuit.com. 2. Create app for QuickBooks Online. 3. Use OAuth 2.0 Authorization Code flow. 4. Get realmId (company ID) during auth.

Key facts

Base URLhttps://quickbooks.api.intuit.com/v3/
API versionv3
AuthOAuth 2.0. Register app at developer.intuit.com. Use OAuth Playground for testing.
Token URLhttps://oauth.platform.intuit.com/oauth2/v1/tokens/bearer
Scopescom.intuit.quickbooks.accounting
Request bodyapplication/json
PaginationSQL-like query: STARTPOSITION and MAXRESULTS (e.g., SELECT * FROM Invoice STARTPOSITION 1 MAXRESULTS 100).
Rate limit500 req/min per realmId. Concurrent: 10 requests. Throttle at 40% of limit.
Error formatJSON: {"Fault":{"Error":[{"Message":"...","Detail":"...","code":"..."}]}}

Key endpoints

MethodPathDescription
POST/company/{realmId}/invoiceCreate invoice
GET/company/{realmId}/query?query=SELECT...Query entities with SQL-like syntax
POST/company/{realmId}/paymentRecord payment
GET/company/{realmId}/reports/ProfitAndLossGet P&L report

Quickstart

GET /v3/company/{realmId}/query?query=SELECT * FROM Invoice WHERE TotalAmt > '100.00'
Authorization: Bearer {access_token}
Accept: application/json

Agent pitfalls & tips

Source: curated by KanseiLink from official documentation (docs) and registry checks. Last reviewed: 2026-04-07. Specs change โ€” verify against the official docs before production use.

Frequently Asked Questions

What is QuickBooks Online's AEO score? โ–ผ
QuickBooks Online has an AEO score of 0.70 and is rated A (Functional agent integration). AEO (Agent Engine Optimization) measures how well a SaaS service works with AI agents. Scores range from 0.00 to 1.00, with grades from AAA (best) to D (not agent-ready).
Is QuickBooks Online AI-agent-ready? โ–ผ
QuickBooks Online is currently connectable for AI agent use. API access is available but no dedicated MCP server has been published yet. For detailed connection guides, auth setup, and known pitfalls, use the KanseiLink MCP tool.
How does QuickBooks Online compare to other Accounting & Finance services? โ–ผ
In the Accounting & Finance category, QuickBooks Online is rated A. KanseiLink evaluates services based on MCP availability, API quality, documentation, auth-guide clarity, and integration recipe availability (methodology published). Visit the full rankings at kansei-link.com to see how QuickBooks Online compares.
How can I integrate QuickBooks Online with an AI agent? โ–ผ
The fastest way to integrate QuickBooks Online with an AI agent is through KanseiLink MCP. Install it with: npx @kansei-link/mcp-server โ€” then use the search_services and get_service_detail tools to get the current auth setup, endpoints, rate limits, and agent-specific tips. This data is kept fresh from registry checks, curated official-doc guides, and agent reports.
How do I authenticate with QuickBooks Online? โ–ผ
OAuth 2.0. Register app at developer.intuit.com. Use OAuth Playground for testing. Setup: 1. Register at developer.intuit.com. 2. Create app for QuickBooks Online. 3. Use OAuth 2.0 Authorization Code flow. 4. Get realmId (company ID) during auth.
What are QuickBooks Online's API rate limits? โ–ผ
500 req/min per realmId. Concurrent: 10 requests. Throttle at 40% of limit.