Backup & Recovery
Give Claude control over your backups. AI manages schedules, verifies integrity, and restores data—all with a simple request.
Before
You
A customer accidentally deleted their project. Can you restore it from yesterday's backup?
I can't access your backup system—no visibility into backup schedules, snapshots, or recovery procedures.
You'll need to manually restore from your backup provider.
After
You
A customer accidentally deleted their project. Can you restore it from yesterday's backup?
Using archive.list_snapshots
archive.list_snapshots(table: "projects", last: "7d")
Available Snapshots
• Yesterday 3:00 AM (verified)
• 2 days ago 3:00 AM (verified)
Project ID 847 found in yesterday's snapshot
Using archive.restore_record
archive.restore_record("projects", 847, snapshot: "yesterday")
Restored. Project 847 recovered with all associated data. Customer notified.
Available via MCP (Model Context Protocol)
archive.list_snapshots()
"What backups do we have?"
archive.restore_record(table, id)
"Bring back this deleted item"
archive.verify_backup()
"Is the latest backup valid?"
archive.create_snapshot()
"Take a backup right now"
We're building Archive as part of Phase 2. Follow along to get early access.