/** * Glass MCP v9.0.0 Core Server * * Simplified Model Context Protocol server for Phase 5 integration and testing. * This serves as the foundation for the complete Glass MCP visual automation system. * * @version 9.0.0 * @author Glass MCP Vision Team */ /** * Glass MCP Server - Core Visual Automation Platform * * Provides foundation for comprehensive visual automation capabilities through MCP protocol */ export declare class GlassMCPServer { private server; private configManager?; private performanceMonitor?; private isInitialized; private isRunning; constructor(); /** * Initialize the Glass MCP server */ initialize(): Promise; /** * Start the MCP server */ start(): Promise; /** * Initialize core components (placeholder implementations) */ private initializeCoreComponents; /** * Setup MCP tool handlers */ private setupToolHandlers; /** * Handle screen capture requests */ private handleCaptureScreen; /** * Handle element finding requests */ private handleFindElement; /** * Handle element clicking requests */ private handleClickElement; /** * Handle drawing with feedback requests */ private handleDrawWithFeedback; /** * Handle system status requests */ private handleGetSystemStatus; /** * Handle performance dashboard requests */ private handleGetPerformanceDashboard; /** * Handle system configuration requests */ private handleConfigureSystem; /** * Get server status */ getStatus(): { isInitialized: boolean; isRunning: boolean; uptime: number; version: string; }; /** * Shutdown the server */ shutdown(): Promise; } /** * Create and initialize Glass MCP server */ export declare function createGlassMCPServer(): Promise; //# sourceMappingURL=mcp-server-core.d.ts.map