UNPKG

ai-debug-local-mcp

Version:

🎯 ENHANCED AI GUIDANCE v4.1.2: Dramatically improved tool descriptions help AI users choose the right tools instead of 'close enough' options. Ultra-fast keyboard automation (10x speed), universal recording, multi-ecosystem debugging support, and compreh

82 lines • 2.04 kB
/** * Simplified Infinite Scroll Debugging Tools for Mirrorbear * * Working implementation without complex types that cause compilation issues */ export declare const INFINITE_SCROLL_SIMPLE_TOOLS: ({ name: string; description: string; inputSchema: { type: string; properties: { url: { type: string; description: string; }; sessionId: { type: string; description: string; }; scrollTests?: undefined; }; required: string[]; }; } | { name: string; description: string; inputSchema: { type: string; properties: { sessionId: { type: string; description: string; }; scrollTests: { type: string; description: string; }; url?: undefined; }; required: string[]; }; } | { name: string; description: string; inputSchema: { type: string; properties: { sessionId: { type: string; description: string; }; url?: undefined; scrollTests?: undefined; }; required: string[]; }; })[]; export declare class SimpleInfiniteScrollHandler { private sessions; startDebugging(params: { url: string; sessionId?: string; }): Promise<any>; testFunctionality(params: { sessionId: string; scrollTests?: number; }): Promise<any>; debugTrigger(params: { sessionId: string; }): Promise<any>; debugApi(params: { sessionId: string; }): Promise<any>; debugDom(params: { sessionId: string; }): Promise<any>; generateFix(params: { sessionId: string; }): Promise<any>; handleTool(toolName: string, params: any): Promise<any>; } //# sourceMappingURL=infinite-scroll-simple.d.ts.map