/** * Barrel module that registers all 157 Frihet ERP tools on an McpServer. * * Used by both the local (stdio) and remote (Cloudflare Workers) servers * so tool definitions stay in sync — one source of truth. * * Langfuse observability is injected by patching server.registerTool once * before any tool registration. This wraps every tool callback with * traceMCPTool so all 157 tools are instrumented at zero per-tool cost. */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { IFrihetClient } from "../client-interface.js"; export declare function registerAllTools(server: McpServer, client: IFrihetClient): void; //# sourceMappingURL=register-all.d.ts.map