srem
Remove a specific value from a Redis set using the Redis MCP Server. Input the set key and value to manage data efficiently in agentic applications.
Instructions
Remove a value from a Redis set.
Args: name: The Redis set key. value: The value to remove from the set.
Returns: A success message or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
value | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"value": {
"title": "Value",
"type": "string"
}
},
"required": [
"name",
"value"
],
"title": "sremArguments",
"type": "object"
}