Skip to main content
Glama
Nicolas-One

Redis CRUD MCP Server

by Nicolas-One

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
REDIS_HOSTNoRedis server host address127.0.0.1
REDIS_PORTNoRedis server port6379
REDIS_PASSWORDYesRedis password (required)

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
redis_setC

设置键值。自动读取项目 .env 配置连接 Redis。

redis_getC

获取键值。

redis_delC

删除键。

redis_existsC

检查键是否存在。

redis_infoB

获取连接信息。

redis_hsetC

设置哈希字段。

redis_hgetC

获取哈希字段。

redis_hgetallC

获取哈希所有字段。

redis_hdelC

删除哈希字段。

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.1/5.0

Scored across 9 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: key operations (del, exists, get, set) and hash operations (hdel, hget, hgetall, hset) are well-separated, with an additional info tool for connection details. No ambiguity.

Naming Consistency5/5

All tools follow a consistent pattern: 'redis_' prefix followed by verb_noun in snake_case (e.g., redis_del, redis_hgetall). No camelCase or mixing of conventions.

Tool Count5/5

9 tools is well-scoped for a Redis CRUD server. It covers essential operations for keys and hashes without being excessive or insufficient.

Completeness4/5

Covers CRUD for keys (set, get, exists, del) and hashes (hset, hget, hgetall, hdel). Missing hash field existence check (hexists) and other data structures like lists/sets, but acceptable for a basic CRUD server.

Maintenance

ActivityInactive
ResponsivenessNo issues