@coretext-ai/qa-looker-b5c6d7e8-f9a0-4123-a456-567890123456
Version:
MCP server with looker integration
21 lines • 582 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';
};
looker: {
lOOKERCLIENTCREDENTIALS: string;
};
}
export declare function loadConfig(): ServerConfig;
export declare function validateConfig(config: ServerConfig): {
isValid: boolean;
errors: string[];
};
//# sourceMappingURL=config.d.ts.map