/** * MCP Integration Entry Point * * NOTE: The MCP system resolves configured servers to a singleton client * manager. Tool execution is handled by the daemon runtime. */ export { McpClientManager } from './client.js'; export type { McpServerConfig, McpTool } from './client.js'; import { McpClientManager, type McpServerConfig } from './client.js'; /** * Get the singleton MCP client manager, (re)connecting when the resolved global config * set changes (e.g. new env, toggled server). */ export declare function getMcpManager(options?: { forceConfigRefresh?: boolean; }): Promise; /** * Initialize the MCP manager with explicit server configs (tests / rare overrides). * Clears the signature so the next {@link getMcpManager} call will refresh if needed. */ export declare function initMcpManager(configs: McpServerConfig[]): McpClientManager; //# sourceMappingURL=index.d.ts.map