Upstash MCP Server

Official

redis_database_restore_backup

Restore a backup of a specific Upstash redis database. A backup can only be restored to the same database it was created from.

Input Schema

NameRequiredDescriptionDefault
backup_idYesThe ID of the backup to restore.
database_idYesThe ID of the database to restore a backup to.

Input Schema (JSON Schema)

{ "properties": { "backup_id": { "description": "The ID of the backup to restore.", "type": "string" }, "database_id": { "description": "The ID of the database to restore a backup to.", "type": "string" } }, "required": [ "database_id", "backup_id" ], "type": "object" }