/** * AI Tool Detection * * Detects which AI coding tools are installed by checking * for their config directories/files on the filesystem. */ export interface DetectedTool { name: string; id: "claude-desktop" | "claude-code" | "cursor" | "windsurf" | "vscode"; configPath: string; /** Key path within the JSON config for MCP servers */ mcpKey: string; detected: boolean; } /** * Get all supported tools with detection status */ export declare function detectTools(): DetectedTool[]; //# sourceMappingURL=detect-tool.d.ts.map