Upstash MCP Server

Official

redis_database_run_multiple_redis_commands

Run multiple Redis commands on a specific Upstash redis database

Input Schema

NameRequiredDescriptionDefault
commandsYesThe Redis commands to run. Example: [['SET', 'foo', 'bar'], ['GET', 'foo']]
database_rest_tokenYesThe REST token of the database.
database_rest_urlYesThe REST URL of the database. Example: https://***.upstash.io

Input Schema (JSON Schema)

{ "properties": { "commands": { "description": "The Redis commands to run. Example: [['SET', 'foo', 'bar'], ['GET', 'foo']]", "items": { "items": { "type": "string" }, "type": "array" }, "type": "array" }, "database_rest_token": { "description": "The REST token of the database.", "type": "string" }, "database_rest_url": { "description": "The REST URL of the database. Example: https://***.upstash.io", "type": "string" } }, "required": [ "database_rest_url", "database_rest_token", "commands" ], "type": "object" }