ToolBox MCP Server

by xiaoguomeiyitian
Verified

redis_tool

Input Schema

NameRequiredDescriptionDefault
argsNoArguments for the command (JSON string)
commandYesRedis command to execute (e.g., 'GET', 'SET')

Input Schema (JSON Schema)

{ "description": "Execute Redis commands (strings, hashes, lists, sets, etc.)", "name": "redis_tool", "properties": { "args": { "description": "Arguments for the command (JSON string)", "type": "string" }, "command": { "description": "Redis command to execute (e.g., 'GET', 'SET')", "type": "string" } }, "required": [ "command" ], "type": "object" }