/** * Intelligence tools for the Frihet MCP server. * * These tools go beyond CRUD — they provide contextual business intelligence * that helps AI agents understand the user's business at a glance. * * - get_business_context: Full business snapshot (call FIRST in any session) * - get_monthly_summary: Monthly P&L and invoice stats * - get_quarterly_taxes: Tax prep data for Modelo 303/130 * - duplicate_invoice: Clone an invoice for a new period */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { IFrihetClient } from "../client-interface.js"; export declare function registerIntelligenceTools(server: McpServer, client: IFrihetClient): void; //# sourceMappingURL=intelligence.d.ts.map