Everything you need to get started with henry-db-backup.
postgresql://postgres:[password]@db.[project-ref].supabase.co:5432/postgresFind this in Supabase Dashboard → Settings → Database → Connection string
postgresql://[user]:[password]@[host].neon.tech/[dbname]?sslmode=requireFind this in Neon Console → Connection Details
postgresql://postgres:[password]@[host].railway.app:5432/railwayFind this in Railway Dashboard → your Postgres service → Connect
Each backup is stored as a .sql file. To restore:
psql postgresql://user:pass@host/dbname < backup-2026-02-22.sqlcreatedb new_database && psql new_database < backup-2026-02-22.sqlhenry-db-backup includes a built-in MCP (Model Context Protocol) server at /api/mcp. This lets AI agents like Claude query your backup status and trigger backups.
list_databasesReturns all connected databases for the authenticated user.list_backupsReturns backup history with status, size, and timestamps.get_statusReturns a summary of backup health across all databases.trigger_backupManually triggers a backup for a specific database ID./api/v1/databasesList all connected databases/api/v1/databasesAdd a new database/api/v1/backupsList all backups/api/databases/testTest a connection string