crew-management-mcp-server
Version:
Crew management server handling crew records, certifications, scheduling, payroll, and vessel assignments with ERP access for data extraction
37 lines (36 loc) • 1.01 kB
TypeScript
export interface Config {
mongoUri: string;
mongoDbName: 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;
snowflakeAccount?: string;
snowflakeUser?: string;
snowflakePassword?: string;
snowflakeWarehouse?: string;
snowflakeDatabase?: string;
snowflakeSchema?: string;
snowflakeRole?: string;
companyDbUri?: string;
companyDbName?: string;
companyName?: string;
baseUrl?: string;
logLevel?: string;
port?: string;
}
export declare function getConfig(): Config;
export declare const config: Config;