Upstash MCP Server

Official

redis_database_create_new

Create a new Upstash redis database. NOTE: Ask user for the region and name of the database. NOTE: Don't show the database ID from the response to the user unless explicitly asked or needed.

Input Schema

NameRequiredDescriptionDefault
nameYesName of the database.
primary_regionYesPrimary Region of the Global Database.
read_regionsNoArray of read regions of the db

Input Schema (JSON Schema)

{ "properties": { "name": { "description": "Name of the database.", "type": "string" }, "primary_region": { "description": "Primary Region of the Global Database.", "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" }, "read_regions": { "description": "Array of read regions of the db", "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": [ "name", "primary_region" ], "type": "object" }