del
Delete a specific key from Redis database using the MCP protocol to manage and maintain data efficiently.
Instructions
Delete a key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Key to delete |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "Key to delete",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}