@flexabrain/mcp-server
Version:
Advanced electrical schematic analysis MCP server with rail engineering expertise
31 lines • 1.16 kB
TypeScript
/**
* FlexaBrain MCP Server - Rail Electrical Component Database
*
* Comprehensive database of rail electrical components with specifications,
* standards, and maintenance requirements based on field expertise.
*/
import { ComponentType, ComponentSpecification } from '../types/electrical.js';
export interface ComponentPattern {
patterns: RegExp[];
prefixes: string[];
description: string;
confidence_boost: number;
typical_locations: string[];
context_clues: string[];
}
export interface RailComponentSpec extends ComponentSpecification {
rail_specific: {
traction_systems: string[];
voltage_classes: string[];
typical_applications: string[];
interoperability_standards: string[];
environmental_ratings: string[];
};
}
/**
* Rail Electrical Component Recognition Patterns
* Based on international rail electrical standards and naming conventions
*/
export declare const RAIL_COMPONENT_PATTERNS: Record<ComponentType, ComponentPattern>;
export declare const RAIL_COMPONENT_SPECIFICATIONS: Record<ComponentType, RailComponentSpec>;
//# sourceMappingURL=rail-components.d.ts.map