purchase-mcp-server
Version:
Purchase and budget management server handling requisitions, purchase orders, expenses, budgets, and vendor management with ERP access for data extraction
32 lines (31 loc) • 852 B
TypeScript
export interface Config {
mongoUri: string;
dbName: string;
secondaryMongoUri?: string;
secondaryDbName?: string;
devApiMongoUri: string;
devApiDbName: string;
etlDevMongoUri: string;
etlDevDbName: string;
etlDevDataUri: string;
etlDevDataDbName: 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;
companyName?: string;
}
export declare const config: Config;