/** * Bank rules tools for the Frihet MCP server — Day 1 Megasprint (2 tools). * * Tools: * 1. frihet_bank_rules_list — list bank auto-categorization rules for the workspace * 2. frihet_bank_rule_create — create a new bank categorization rule * * Skipped (external webhook handlers, not MCP-callable): * - plaidWebhook — Plaid inbound webhook * - tinkWebhook — Tink/Revolut inbound webhook * * REST surface: /v1/banking/rules — admin-side rule management. * Backend callables: #394 Banking Q3 flag (Frihet-ERP PR #394). * Tools surface 404 until backend callable wrapper ships. * * NOTE: Bank rules are Q3-flagged in Frihet-ERP. These tools are wired here * so AI agents can read + create rules once the backend ships, without an MCP * bump. Backend may still be Firestore-direct writes; tools will 404 gracefully. */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { IFrihetClient } from "../client-interface.js"; export declare function registerBankRulesTools(server: McpServer, client: IFrihetClient): void; //# sourceMappingURL=bank_rules.d.ts.map