get
Retrieve string values from a Redis database using the Model Context Protocol (MCP). Provide a key to quickly fetch and manage stored data efficiently.
Instructions
Get string value
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Key to get |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "Key to get",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}