Upstash MCP Server

Official

redis_database_set_daily_backup

Enable or disable daily backups for a specific Upstash redis database.

Input Schema

NameRequiredDescriptionDefault
database_idYesThe ID of the database to enable or disable daily backups for.
enableYesWhether to enable or disable daily backups.

Input Schema (JSON Schema)

{ "properties": { "database_id": { "description": "The ID of the database to enable or disable daily backups for.", "type": "string" }, "enable": { "description": "Whether to enable or disable daily backups.", "type": "boolean" } }, "required": [ "database_id", "enable" ], "type": "object" }