Redis MCP Server
by farhankaz
hget
Get the value of a hash field
Input Schema
Name | Required | Description | Default |
---|---|---|---|
field | Yes | Field to get | |
key | Yes | Hash key |
Input Schema (JSON Schema)
{
"properties": {
"field": {
"description": "Field to get",
"type": "string"
},
"key": {
"description": "Hash key",
"type": "string"
}
},
"required": [
"key",
"field"
],
"type": "object"
}