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

26 lines • 1.07 kB
/** * GraphQL Request Inspector Handler * * Captures all GraphQL requests/responses, identifies failed queries in async contexts, * and shows exact error messages to help debug mock coverage issues. * * Essential for debugging LiveView processes that die due to missing GraphQL mocks. */ import { BaseToolHandler } from './base-handler.js'; import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { DebugSession } from '../types.js'; export declare class GraphQLRequestInspectorHandler extends BaseToolHandler { tools: Tool[]; handle(toolName: string, args: any, sessions: Map<string, DebugSession>): Promise<any>; private inspectGraphQLRequests; private analyzeFailedGraphQLQueries; private traceGraphQLToProcess; private monitorGraphQLRealTime; private generateGraphQLAnalysis; private extractNumberFromText; private generateMockSuggestions; private analyzeFailurePatterns; private analyzeVariablePatterns; private compareFailedVsSuccessful; } //# sourceMappingURL=graphql-request-inspector-handler.d.ts.map