UNPKG

voyage-and-consumption-mcp-server

Version:

Voyage and consumption management server handling vessel voyages, fuel consumption, performance monitoring, and operational data with ERP access for data extraction

37 lines (36 loc) 1 kB
export interface Config { mongoUri: string; dbName: string; secondaryMongoUri: string; secondaryDbName: 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; navtorApiBase?: string; navtorUsername?: string; navtorPassword?: string; navtorClientId?: string; navtorClientSecret?: string; siyaApiBase?: string; siyaApiKey?: string; stormglassApiBase?: string; stormglassApiKey?: string; } export declare const config: Config;