/** * Local CLI Agent MCP Tools * * Enables agents to discover and invoke external CLI agents (Claude, Cursor, etc.) * with proper availability checking, user configuration, and session timeout handling. * * @module mcp/cli-agent-tools */ import type { Tool } from '@modelcontextprotocol/sdk/types.js'; export declare function getCliAgentToolDefinitions(): Tool[]; /** * Execute a CLI agent tool */ export declare function executeCliAgentTool(toolName: string, args: Record, _options?: { debug?: boolean; }): Promise; /** * Clear availability cache (call after config changes) */ export declare function clearCliAgentCache(): void; //# sourceMappingURL=cli-agent-tools.d.ts.map