/** * MCP Resources for the Frihet ERP server (11 total: 7 static + 4 dynamic). * * Resources are read-only reference data that LLMs can access without making * API calls. They encode domain knowledge (tax rates, deadlines, categories, * currencies, countries) that would otherwise require the user to explain * every time. * * All resources use the `frihet://` URI scheme. */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { IFrihetClient } from "../client-interface.js"; export declare const MCP_STATIC_RESOURCE_COUNT = 7; export declare const MCP_DYNAMIC_RESOURCE_COUNT = 4; export declare const MCP_RESOURCE_COUNT: number; export declare function registerAllResources(server: McpServer, client?: IFrihetClient): void; //# sourceMappingURL=register-all.d.ts.map