/** * Generic Client Importer * * Imports MCP configurations from any registered MCP client. * Supports both config files (JSON/TOML) and extensions (.dxt bundles). */ export interface ImportedMCP { command: string; args?: string[]; env?: Record; _source?: string; _client?: string; _extensionId?: string; _version?: string; } export interface ImportResult { mcpServers: Record; imported: boolean; count: number; sources: { config: number; extensions: number; }; clientName: string; } /** * Import MCPs from a specific client */ export declare function importFromClient(clientName: string): Promise; /** * Check if we should attempt auto-import from a client * Returns true if client config or extensions directory exists */ export declare function shouldAttemptClientSync(clientName: string): boolean; //# sourceMappingURL=client-importer.d.ts.map