hget
Retrieve the value of a specific field within a Redis hash using key and field name, enabling efficient data access and management in Redis MCP Server.
Instructions
Get the value of a field in a Redis hash.
Args: name: The Redis hash key. key: The field name inside the hash.
Returns: The field value or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"title": "Key",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name",
"key"
],
"title": "hgetArguments",
"type": "object"
}