pms-analysis-reports-mcp-server
Version:
PMS analysis reports server handling maintenance reports, equipment analysis, compliance tracking, and performance metrics with ERP access for data extraction
36 lines (35 loc) • 988 B
TypeScript
export interface Config {
mongoUri: string;
dbName: string;
secondaryDbUri: string;
secondaryDbName: string;
thirdDbUri: string;
thirdDbName: string;
companyDbUri: string;
companyDbName: string;
companyName?: string;
typesenseHost: string;
typesensePort: string;
typesenseProtocol: string;
typesenseApiKey: string;
cohereApiKey?: string;
openaiApiKey?: string;
s3ApiToken?: string;
perplexityApiKey?: string;
llamaApiKey?: string;
vendorModel?: string;
googleClientId?: string;
googleClientSecret?: string;
googleRedirectUri?: string;
s3GenerateHtmlUrl?: string;
llamaParseUrl?: string;
googleApiKey?: string;
googleSearchEngineId?: string;
mongoMaxPoolSize?: number;
mongoMinPoolSize?: number;
mongoConnectionTimeout?: number;
mongoSocketTimeout?: number;
typesenseConnectionTimeout?: number;
typesenseRetries?: number;
}
export declare const config: Config;