UNPKG

google-context-mcp

Version:

Secure Google Search MCP server providing real-time coding context to AI models and LLMs - find latest docs, solutions, and best practices while coding

24 lines 736 B
export interface UserConfig { googleApiKey?: string; customSearchEngineId?: string; defaultLanguage?: string; defaultCountry?: string; defaultSafeSearch?: 'off' | 'medium' | 'high'; defaultNumResults?: number; } export declare class ConfigManager { private configPath; private config; constructor(); loadConfig(): Promise<UserConfig>; saveConfig(config: Partial<UserConfig>): Promise<void>; getConfig(): Promise<UserConfig>; hasValidCredentials(): Promise<boolean>; getCredentials(): Promise<{ apiKey: string; customSearchEngineId: string; } | null>; getConfigPath(): string; resetConfig(): Promise<void>; } //# sourceMappingURL=config-manager.d.ts.map