hash_get
Retrieve specific field values from a Redis hash key using the Redis MCP server, simplifying efficient data access and management for database operations.
Instructions
获取哈希字段
Input Schema
Name | Required | Description | Default |
---|---|---|---|
field | Yes | 字段名 | |
key | Yes | 哈希键名 |
Input Schema (JSON Schema)
{
"properties": {
"field": {
"description": "字段名",
"type": "string"
},
"key": {
"description": "哈希键名",
"type": "string"
}
},
"required": [
"key",
"field"
],
"type": "object"
}