Redis MCP Server

zrangebyscore

Return members from a sorted set with scores between min and max

Input Schema

NameRequiredDescriptionDefault
keyYesSorted set key
maxYesMaximum score
minYesMinimum score
withScoresNoInclude scores in output

Input Schema (JSON Schema)

{ "properties": { "key": { "description": "Sorted set key", "type": "string" }, "max": { "description": "Maximum score", "type": "number" }, "min": { "description": "Minimum score", "type": "number" }, "withScores": { "default": false, "description": "Include scores in output", "type": "boolean" } }, "required": [ "key", "min", "max" ], "type": "object" }