Connect & API
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
Claude
Connect via MCP: let Claude read the ledger and run agent skills under your autonomy rules.
Connect
ChatGPT
Add automate.business as a connector for custom GPTs and workflows.
Connect
Your own tools
Point any MCP-compatible client at our server endpoint.
Endpoint
Or build with the API
reconcile.tsCopy
// 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

12
txns.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
active
ab_mcp_••••7c10
Claude · read-only
active
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.