@coretext-ai/qa-google-contacts-a58500d5-8331-4ce9-a140-d204a9fae815
Version:
MCP server with google-contacts integration
22 lines • 609 B
TypeScript
export interface ServerConfig {
logShipping: {
enabled: boolean;
endpoint: string;
apiKey?: string;
requireApiKey?: boolean;
batchSize: number;
flushInterval: number;
maxRetries: number;
logLevel: 'DEBUG' | 'INFO' | 'WARN' | 'ERROR' | 'FATAL';
};
googleContacts: {
gOOGLEOAUTHCREDENTIALS: string;
oauth: any;
};
}
export declare function loadConfig(): ServerConfig;
export declare function validateConfig(config: ServerConfig): {
isValid: boolean;
errors: string[];
};
//# sourceMappingURL=config.d.ts.map