MCP Now
Redis

Redis

by modelcontextprotocol
Official Reference
GitHub

Interact with Redis key-value stores

redis
key
server
docker
input

Redis

A Model Context Protocol server that provides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.

Components

Tools

  • set

    • Set a Redis key-value pair with optional expiration
    • Input:
      • key (string): Redis key
      • value (string): Value to store
      • expireSeconds (number, optional): Expiration time in seconds
  • get

    • Get value by key from Redis
    • Input: key (string): Redis key to retrieve
  • delete

    • Delete one or more keys from Redis
    • Input: key (string | string[]): Key or array of keys to delete
  • list

    • List Redis keys matching a pattern
    • Input: pattern (string, optional): Pattern to match keys (default: *)

Usage with Claude Desktop

To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your claude_desktop_config.json:

Docker

  • when running docker on macos, use host.docker.internal if the server is running on the host network (eg localhost)
  • Redis URL can be specified as an argument, defaults to "redis://localhost:6379"
1{ 2 "mcpServers": { 3 "redis": { 4 "command": "docker", 5 "args": [ 6 "run", 7 "-i", 8 "--rm", 9 "mcp/redis", 10 "redis://host.docker.internal:6379"] 11 } 12 } 13}

NPX

1{ 2 "mcpServers": { 3 "redis": { 4 "command": "npx", 5 "args": [ 6 "-y", 7 "@modelcontextprotocol/server-redis", 8 "redis://localhost:6379" 9 ] 10 } 11 } 12}

Building

Docker:

1docker build -t mcp/redis -f src/redis/Dockerfile .

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.