Upstash MCP Server

Official

redis_database_create_backup

Create a backup of a specific Upstash redis database. NOTE: Ask user to choose a name for the backup

Input Schema

NameRequiredDescriptionDefault
backup_nameYesA name for the backup.
database_idYesThe ID of the database to create a backup for.

Input Schema (JSON Schema)

{ "properties": { "backup_name": { "description": "A name for the backup.", "type": "string" }, "database_id": { "description": "The ID of the database to create a backup for.", "type": "string" } }, "required": [ "database_id", "backup_name" ], "type": "object" }