UNPKG

@flexabrain/mcp-server

Version:

Advanced electrical schematic analysis MCP server with rail engineering expertise

16 lines 629 B
import { ComponentType } from '../types/electrical.js'; /** * MCP Tool: Extract Component Inventory * * Extracts and catalogs all electrical components from a schematic image * without performing full analysis. Optimized for inventory management * and component tracking in rail electrical systems. */ export declare function extractComponentInventory(args: { image_path: string; include_specifications?: boolean; component_types?: ComponentType[]; confidence_threshold?: number; export_format?: 'json' | 'csv' | 'markdown'; }): Promise<string>; //# sourceMappingURL=extract-component-inventory.d.ts.map