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
30 lines • 922 B
TypeScript
/**
* 🔄 Auto-Update Handler for AI-Debug MCP Server
*
* Provides MCP tools for managing auto-updates
* Ensures users always have the latest features including universal recording
*/
import { BaseToolHandler } from './base-handler.js';
import { Tool } from '@modelcontextprotocol/sdk/types.js';
export declare class AutoUpdateHandler extends BaseToolHandler {
name: string;
description: string;
private autoUpdater;
private updateNotifications;
constructor();
private initializeAutoUpdater;
private setupEventListeners;
tools: Tool[];
handle(toolName: string, args: any): Promise<any>;
private checkForUpdates;
private installUpdate;
private configureAutoUpdate;
private getUpdateStatus;
private viewUpdateChangelog;
private rollbackUpdate;
/**
* Clean up resources
*/
destroy(): void;
}
//# sourceMappingURL=auto-update-handler.d.ts.map