Upstash MCP Server

Official

redis_database_get_details

Get further details of a specific Upstash redis database. Includes all details of the database including usage statistics. db_disk_threshold: Total disk usage limit. db_memory_threshold: Maximum memory usage. db_daily_bandwidth_limit: Maximum daily network bandwidth usage. db_request_limit: Total number of commands allowed. All sizes are in bytes

NOTE: Don't show the database ID from the response to the user unless explicitly asked or needed.

Input Schema

NameRequiredDescriptionDefault
database_idYesThe ID of the database to get details for.

Input Schema (JSON Schema)

{ "properties": { "database_id": { "description": "The ID of the database to get details for.", "type": "string" } }, "required": [ "database_id" ], "type": "object" }