mcp-memory-ts
Version:
Cloud-based vector MCP memory service for Claude.ai - TypeScript implementation
28 lines • 838 B
TypeScript
/**
* Contacts Sync Command - True Bidirectional Sync with LLM-based Deduplication
* Implements comprehensive sync logic with UUID matching, conflict resolution, and ChatGPT-4 deduplication
*/
export interface ContactsSyncOptions {
userId: string;
direction: 'export' | 'import' | 'both';
dryRun?: boolean;
autoMerge?: boolean;
threshold?: number;
noLlm?: boolean;
}
export interface ContactsSyncResult {
success: boolean;
exported: number;
imported: number;
updated: number;
merged: number;
failed: number;
skipped: number;
errors: string[];
duplicatesFound: number;
}
/**
* Main sync function with true bidirectional sync logic
*/
export declare function syncContacts(options: ContactsSyncOptions): Promise<ContactsSyncResult>;
//# sourceMappingURL=contacts-sync.d.ts.map