UNPKG

sequelae-mcp

Version:

Let Claude, Cursor, and other AI agents run real SQL queries on live Postgres databases. No more copy-pasting SQL, stale schema docs, or hallucinated DB adapters — just raw, real-time access. Now with MCP support!

17 lines 413 B
export interface BackupOptions { format?: 'plain' | 'custom' | 'directory' | 'tar'; tables?: string[]; schemas?: string[]; dataOnly?: boolean; schemaOnly?: boolean; compress?: boolean; outputPath?: string; } export interface BackupResult { success: boolean; outputPath: string; size?: number; duration: number; error?: string; } //# sourceMappingURL=backup.d.ts.map