Redis MCP Server
Servidor MCP de Redis
Un servidor de Protocolo de contexto de modelo (MCP) que proporciona acceso a las operaciones de base de datos de Redis.
Estructura del proyecto
src/
├── interfaces/
│ └── types.ts # Shared TypeScript interfaces and types
├── tools/
│ ├── base_tool.ts # Abstract base class for Redis tools
│ ├── tool_registry.ts # Registry managing all available Redis tools
│ ├── hmset_tool.ts # HMSET Redis operation
│ ├── hget_tool.ts # HGET Redis operation
│ ├── hgetall_tool.ts # HGETALL Redis operation
│ ├── scan_tool.ts # SCAN Redis operation
│ ├── set_tool.ts # SET Redis operation
│ ├── get_tool.ts # GET Redis operation
│ ├── del_tool.ts # DEL Redis operation
│ ├── zadd_tool.ts # ZADD Redis operation
│ ├── zrange_tool.ts # ZRANGE Redis operation
│ ├── zrangebyscore_tool.ts # ZRANGEBYSCORE Redis operation
│ └── zrem_tool.ts # ZREM Redis operation
└── redis_server.ts # Main server implementationRelated MCP server: Redis MCP
Herramientas disponibles
Herramienta | Tipo | Descripción | Esquema de entrada |
conjunto de hmset | Comando hash | Establecer varios campos hash con varios valores |
|
hget | Comando hash | Obtener el valor de un campo hash |
|
hgetall | Comando hash | Obtener todos los campos y valores en un hash |
|
escanear | Comando de teclado | Escanear claves de Redis que coincidan con un patrón |
|
colocar | Comando de cadena | Establezca el valor de la cadena con las opciones NX y PX opcionales |
|
conseguir | Comando de cadena | Obtener el valor de la cadena |
|
del | Comando de teclado | Eliminar una clave |
|
Zadd | Comando de conjunto ordenado | Agregar uno o más miembros a un conjunto ordenado |
|
rango z | Comando de conjunto ordenado | Devuelve un rango de miembros de un conjunto ordenado por índice |
|
Puntuación de zrangeby | Comando de conjunto ordenado | Devuelve miembros de un conjunto ordenado con puntuaciones entre mínima y máxima |
|
zrem | Comando de conjunto ordenado | Eliminar uno o más miembros de un conjunto ordenado |
|
triste | Comando de configuración | Agregar uno o más miembros a un conjunto |
|
miembros | Comando de configuración | Obtener todos los miembros en un conjunto |
|
Uso
Configure en su cliente MCP (por ejemplo, Claude Desktop, Cline):
{
"mcpServers": {
"redis": {
"command": "npx",
"args": ["redis-mcp", "--redis-host", "localhost", "--redis-port", "6379"],
"disabled": false
}
}
}Argumentos de la línea de comandos
--redis-host: host del servidor Redis (predeterminado: localhost)--redis-port: puerto del servidor Redis (predeterminado: 6379)
Instalación mediante herrería
Para instalar Redis Server para Claude Desktop automáticamente a través de Smithery :
npx -y @smithery/cli install redis-mcp --client claudeDesarrollo
Para agregar una nueva herramienta Redis:
Cree una nueva clase de herramienta en
src/tools/que extiendaRedisToolDefine la interfaz de la herramienta en
src/interfaces/types.tsRegistre la herramienta en
src/tools/tool_registry.ts
Ejemplo de implementación de la herramienta:
export class MyTool extends RedisTool {
name = 'mytool';
description = 'Description of what the tool does';
inputSchema = {
type: 'object',
properties: {
// Define input parameters
},
required: ['requiredParam']
};
validateArgs(args: unknown): args is MyToolArgs {
// Implement argument validation
}
async execute(args: unknown, client: RedisClientType): Promise<ToolResponse> {
// Implement tool logic
}
}Licencia
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityFmaintenanceProvides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.11230MIT
- AlicenseBqualityDmaintenanceEnables AI assistants to perform comprehensive Redis database operations including managing strings, hashes, lists, sets, sorted sets, TTL management, and data backup/restore. Supports secure connections and provides batch operations for efficient Redis interaction through natural language.3472MIT
- AlicenseBqualityDmaintenanceProvides comprehensive Redis database operations supporting all major data types (strings, lists, sets, hashes, sorted sets) with full CRUD functionality through natural language commands.96MIT
- AlicenseAqualityDmaintenanceEnables AI agents to manage and search data in Redis using natural language. Supports hashes, lists, sets, sorted sets, streams, JSON, and vector search.44MIT
Related MCP Connectors
MCP (Model Context Protocol) server for Appwrite
Shared, governed long-term memory for AI agents across tools and sessions via MCP and REST.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/farhankaz/redis-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server