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
19 lines • 798 B
TypeScript
import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { BaseToolHandler } from '../base-handler.js';
import { PythonBackendEngine } from '../../python-backend-engine.js';
/**
* Handler for Python backend debugging tools (test analysis, Pydantic validation, database debugging)
*/
export declare class PythonBackendHandler extends BaseToolHandler {
private pythonEngine;
constructor(pythonEngine: PythonBackendEngine);
tools: Tool[];
handle(toolName: string, args: any, sessions?: Map<string, any>): Promise<any>;
private analyzePythonTests;
private validatePydanticModels;
private debugDatabaseSchema;
private analyzeBackendLogic;
private debugPythonImports;
private analyzeApiIntegration;
}
//# sourceMappingURL=python-backend-handler.d.ts.map