UNPKG

@flexabrain/mcp-server

Version:

Advanced electrical schematic analysis MCP server with rail engineering expertise

24 lines 919 B
/** * MCP Tool: Batch Analyze Schematics * * Processes multiple electrical schematic images in batch mode with * consolidated reporting, cross-schematic analysis, and system-wide * insights leveraging rail engineering expertise for comprehensive evaluation. */ export declare function batchAnalyzeSchematics(args: { input_directory: string; file_pattern?: string; analysis_depth?: 'basic' | 'standard' | 'comprehensive'; focus_areas?: Array<'safety' | 'compliance' | 'performance' | 'maintenance'>; output_format?: 'individual' | 'consolidated' | 'both'; cross_reference_analysis?: boolean; rail_system_context?: { system_type: string; voltage_system: string; region: string; }; parallel_processing?: boolean; max_concurrent?: number; generate_summary_report?: boolean; }): Promise<string>; //# sourceMappingURL=batch-analyze-schematics.d.ts.map