Connect & build with AI
automate.business is built for the AI era. Connect Claude, ChatGPT or your own tools to the ledger over our MCP server and developer API. Every action runs through the same autonomy and audit rules.
Connect an AI assistantMCP server live
C
Claude
Connect via MCP: let Claude read the ledger and run agent skills under your autonomy rules.
Or build with the API
// Bulk-code last period's bank feed using // the agent's suggestions, gated by confidence. import { automate } from "@automate.business/sdk"; const txns = await automate.txns.list({ entity: "flat-white-cafe", status: "uncoded", period: "2026-01", }); for (const t of txns) { const { code, confidence } = await automate.ai.suggest(t); // honour the firm's autonomy threshold if (confidence > 0.9) { await automate.txns.code(t.id, code); } else { await automate.txns.hold(t.id); // route to a human } }
Agent tools exposed
12txns.listreadquery ledger
txns.codewriteapply coding
reports.generatewritebuild pack
gst.preparewritedraft return
gst.filehumanalways gated
audit.queryreadread trail
API keys
ab_live_••••4f9a
created 12 Mar · read+write
ab_mcp_••••7c10
Claude · read-only
Same rules apply. Tools called over the API or MCP obey your autonomy thresholds, surface low-confidence work to the review queue, and write to the audit trail. Filing stays human-gated.