Upstash MCP Server

Official

redis_database_update_regions

Update the read regions of an Upstash redis database.

Input Schema

NameRequiredDescriptionDefault
idYesThe ID of your database.
read_regionsYesArray of the new read regions of the database. This will replace the old regions array. Available regions: us-east-1, us-west-1, us-west-2, eu-west-1, eu-central-1, ap-southeast-1, ap-southeast-2, sa-east-1

Input Schema (JSON Schema)

{ "properties": { "id": { "description": "The ID of your database.", "type": "string" }, "read_regions": { "description": "Array of the new read regions of the database. This will replace the old regions array. Available regions: us-east-1, us-west-1, us-west-2, eu-west-1, eu-central-1, ap-southeast-1, ap-southeast-2, sa-east-1", "items": { "enum": [ "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "eu-central-1", "ap-southeast-1", "ap-southeast-2", "sa-east-1" ], "type": "string" }, "type": "array" } }, "required": [ "id", "read_regions" ], "type": "object" }