UNPKG

defect-inspection-tools-mcp-server

Version:

Defect inspection tools server handling defect detection, analysis, and reporting with AI/ML capabilities for quality control

17 lines (16 loc) 417 B
export interface Config { mongoUri: string; dbName: string; secondaryMongoUri?: string; secondaryDbName?: string; openaiApiKey?: string; apiPort?: string; logLevel?: string; typesenseHost?: string; typesensePort?: string; typesenseProtocol?: string; typesenseApiKey?: string; cohereApiKey?: string; perplexityApiKey?: string; } export declare const config: Config;