Version 4.43 or later needs to be installed to add the server automatically
Tools
Name | Description |
---|---|
client_list | Get a list of connected clients to the Redis server. |
dbsize | Get the number of keys stored in the Redis database |
get | Get a Redis string value. |
get_index_info | Retrieve schema and information about a specific Redis index using FT.INFO. |
get_indexed_keys_number | Retrieve the number of indexed keys by the index |
get_indexes | List of indexes in the Redis database Returns: str: A JSON string containing the list of indexes or an error message. |
get_vector_from_hash | Retrieve a vector from a Redis hash and convert it back from binary blob. |
hget | Get the value of a field in a Redis hash. |
hgetall | Get all fields and values from a Redis hash. |
info | Get Redis server information and statistics. |
json_get | Retrieve a JSON value from Redis at a given path. |
llen | Get the length of a Redis list. |
lrange | Get elements from a Redis list within a specific range. Returns: str: A JSON string containing the list of elements or an error message. |
scan_keys | Scan keys in the Redis database using the SCAN command (non-blocking, production-safe). ⚠️ IMPORTANT: This returns PARTIAL results from one iteration. Use scan_all_keys() to get ALL matching keys, or call this function multiple times with the returned cursor until cursor becomes 0. The SCAN command iterates through the keyspace in small chunks, making it safe to use on large databases without blocking other operations. |
smembers | Get all members of a Redis set. |
Manual installation
You can install the MCP server using:
Installation for