Qbo Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Qbo Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Apply CSV-driven changes to QuickBooks Online transactions, plus an MCP server (qbo-mcp) that exposes the same operations to Claude / any MCP client.
Company-agnostic: one install can drive multiple QBO companies via profiles (see Multiple companies).
Workflow: export a Transaction Detail report from QBO, edit a copy of the CSV (or build one from scratch) with the changes you want, then run the applier. Or skip the CSV and drive edits conversationally via the MCP server.
Edit existing posted transactions:
Out of scope: mapping pending bank-feed "For Review" items.
Intuit's Production OAuth keys require an HTTPS redirect URI. They reject http://localhost... for production. To avoid making every user run a tunnel (ngrok etc.), this repo ships a static bouncer page at docs/index.html that you publish on GitHub Pages.
<you>/qbo-mcp).main and /docs.https://<you>.github.io/qbo-mcp/.The page is a stateless redirect — it just reads ?code=...&state=...&realmId=... from the URL and forwards them to http://localhost:<port>/callback on your machine. The port is encoded in the OAuth state param so multiple machines — and multiple companies — can share the same bouncer URL.
You need one Intuit Developer app per QBO company (Intuit ties client credentials to the app, and you authorize each company separately).
qbo-mcp-natu). Scope: com.intuit.quickbooks.accounting.https://<you>.github.io/qbo-mcp/ (from step 1, with trailing slash)..env (or .env.<profile>).QBO_REDIRECT_URI=https://<you>.github.io/qbo-mcp/.Sandbox shortcut: To try the flow against QBO's sandbox first, switch to the Development tab in step 4, registerhttp://localhost:8765/callbackas the redirect URI, setQBO_ENV=sandbox, and skip step 1 entirely.
Note: Production keys for a self-distributed app you only connect to your own QBO company do not require Intuit's app review.
python3 -m venv ~/.venvs/qbo-mcp
source ~/.venvs/qbo-mcp/bin/activate
pip install git+https://github.com/<you>/qbo-mcp.git # or: pip install -e . from a cloneThis installs four console scripts: qbo-auth, qbo-apply, qbo-find, qbo-mcp.
Either export them in your shell, or drop a .env file in the directory you run the commands from (python-dotenv reads from cwd):
export QBO_CLIENT_ID=...
export QBO_CLIENT_SECRET=...
export QBO_REDIRECT_URI=https://<you>.github.io/qbo-mcp/qbo-authThis opens a browser, you log into QBO and pick the company, and tokens are written to ~/.config/qbo-mcp/<profile>/tokens.json (override with QBO_TOKENS_PATH). Refresh tokens last 100 days; access tokens auto-refresh.
One install can serve several QBO companies. Set `QBO_PROFILE` to a short company slug; it namespaces tokens (~/.config/qbo-mcp/<profile>/tokens.json) and selects a per-company env file.
Keep base settings in .env, and company-specific credentials in .env.<profile> (these override the base .env whenever QBO_PROFILE is set):
.env # shared, e.g. QBO_REDIRECT_URI, QBO_ENV
.env.natu # QBO_CLIENT_ID / QBO_CLIENT_SECRET for the Natu Intuit app
.env.span # QBO_CLIENT_ID / QBO_CLIENT_SECRET for the Span Intuit appAuthorize each company once:
QBO_PROFILE=natu qbo-auth
QBO_PROFILE=span qbo-authThen every command targets a company via the same env var:
QBO_PROFILE=span qbo-find Bill --vendor "AWS" --date 2026-04-15
QBO_PROFILE=span qbo-apply changes.csv --dry-runWith QBO_PROFILE unset, everything uses the default profile — fine for a single-company setup.
Set `QBO_READONLY=1` (typically in a profile's .env.<profile>) to block all writes — update_transaction, apply_csv, and qbo-apply refuse at the client layer, while reads/queries keep working. Use it for companies you only want to inspect. There is no read-only QBO OAuth scope, so this guard (not Intuit) is what enforces it; unset the var to re-enable writes.
qbo-apply path/to/changes.csv --dry-run
qbo-apply path/to/changes.csvCSV columns: txn_type, txn_id, line_id, field, new_value
txn_type: QBO entity name — JournalEntry, Bill, Invoice, Purchase (= cash/check/CC expense), Deposittxn_id: QBO internal Id (not the displayed Doc Number — see below)line_id: required for line-level edits (account, class on a line, line memo). Empty for header-level edits (vendor on a Bill, location on most txns, txn-level memo)field: account | class | location | customer | vendor | memonew_value: name of the target Account/Class/Department/Customer/Vendor, or memo textSee changes_example.csv.
The displayed reference (e.g. JE-1042) is not the API Id. Use the helper:
qbo-find JournalEntry --doc-number JE-1042
qbo-find Bill --vendor "Amazon Web Services" --date 2026-04-15
qbo-find Invoice --customer "Acme Corp" --date-range 2026-04-01 2026-04-30
qbo-find Purchase --amount 1234.56Or open the transaction in QBO — the URL contains txnId=<id>.
tokens.json lives at ~/.config/qbo-mcp/<profile>/tokens.json (override via QBO_TOKENS_PATH); refresh tokens last 100 days.qbo-mcp)The same operations are exposed as an MCP server so an MCP client (e.g. Claude Desktop, Claude Code) can drive QBO edits in chat without writing a CSV.
qbo-mcp # stdio transportFor multiple companies, register one server entry per profile — each with its own QBO_PROFILE and credentials. The server name reports the profile (qbo-mcp (span)), so Claude can tell them apart.
Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"qbo-natu": {
"command": "/Users/<you>/.venvs/qbo-mcp/bin/qbo-mcp",
"env": {
"QBO_PROFILE": "natu",
"QBO_CLIENT_ID": "...",
"QBO_CLIENT_SECRET": "...",
"QBO_REDIRECT_URI": "https://<you>.github.io/qbo-mcp/"
}
},
"qbo-span": {
"command": "/Users/<you>/.venvs/qbo-mcp/bin/qbo-mcp",
"env": {
"QBO_PROFILE": "span",
"QBO_CLIENT_ID": "...",
"QBO_CLIENT_SECRET": "...",
"QBO_REDIRECT_URI": "https://<you>.github.io/qbo-mcp/"
}
}
}
}Claude Code: claude mcp add qbo-span --scope user --env QBO_PROFILE=span --env QBO_CLIENT_ID=... --env QBO_CLIENT_SECRET=... -- /Users/<you>/.venvs/qbo-mcp/bin/qbo-mcp
Tools exposed:
find_transactions — search by doc number, date, customer/vendor, amountget_transaction — fetch a full entity (use to read line Ids before editing)lookup_ref — resolve an Account/Class/Department/Customer/Vendor name to its Idquery — read-only QBO SQL passthroughupdate_transaction — apply granular field changes to one transaction (defaults to dry_run=True)apply_csv — batch path, same CSV format as qbo-apply (defaults to dry_run=True)Both write tools default to dry_run=True. To commit, pass dry_run=False explicitly — Claude will surface the change plan first either way.
OAuth still happens via qbo-auth (one-time per company); the MCP server reads tokens.json and refreshes access tokens automatically.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.