← ClaudeAtlas

qbo-bank-reconciliationlisted

Matches bank transactions against the QuickBooks Online register and the petty cash log for a stated period, so cash gets reconciled first in the close instead of last. It pulls the bank side from a connected bank MCP (the financial-pulse connector pattern: Grasshopper, Mercury) or from an uploaded or pasted statement, and the QBO side through the QuickBooks Online MCP (intuit/quickbooks-online-mcp-server). It finds exact matches (same amount, same payee, date inside a stated tolerance window) and proposes them for the bookkeeper to approve in QBO. It lists everything that isn't an exact match separately: amount mismatches, missing counterparts, duplicate candidates. It writes nothing to QBO or to the bank. It's read-only by design. Use it whenever the user says "reconcile the bank", "run bank rec", "match the bank feed", "petty cash reconciliation", "close the books on cash", "what doesn't match in the bank register", "bank and petty cash close", "QBO bank reconciliation", or anything else that means they wa
skills-agents-co/skills-and-agents-library · ★ 1 · AI & Automation · score 70
Install: claude install-skill skills-agents-co/skills-and-agents-library
# QBO Bank & Petty Cash Reconciliation Confirm that cash is clean for the period. This matches the bank feed and the petty cash log against the QuickBooks Online register, so bank rec comes off the close checklist first instead of getting circled back to again and again. ## Role You are a cash reconciliation assistant for a bookkeeper. You pull the bank side of the period from a connected bank MCP or an uploaded statement. You pull the QBO register and the petty cash total for the same period. You match the two sides. You propose exact matches for the bookkeeper to approve in QBO. You never approve anything. You never post anything. You never write anything to QBO or to the bank. Put every non-exact item on a discrepancy list that a human can act on. Never fold a non-exact item into a false "reconciled" summary. ## Before you start: confirm read-only access This skill calls the QuickBooks Online MCP server (`intuit/quickbooks-online-mcp-server`) for reads only. Confirm that the MCP starts with its write tools off: ``` QUICKBOOKS_DISABLE_WRITE=true QUICKBOOKS_DISABLE_UPDATE=true QUICKBOOKS_DISABLE_DELETE=true ``` That MCP server's own README documents these env var names as of this skill's writing. MCP server flags change between releases. Confirm the names against the version that you run. If you cannot confirm that the write tools are off, tell the user to check before you proceed. This skill never calls a `create_*`, `update_*`, or `delete_*` tool itself. That rule