unsubscribe
Stop receiving messages from a specific Redis channel using this tool. Input the channel name to unsubscribe and receive a confirmation or error response.
Instructions
Unsubscribe from a Redis channel.
Args: channel: The Redis channel to unsubscribe from.
Returns: A success message or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"title": "Channel",
"type": "string"
}
},
"required": [
"channel"
],
"title": "unsubscribeArguments",
"type": "object"
}