src_redis

src_redis

by modelcontextprotocol
An MCP server enabling LLMs to interact with Redis databases through standardized tools.

Redis Integration for Claude Desktop

Overview

The Redis Integration for Claude Desktop is a Model Context Protocol (MCP) server that enables seamless interaction between Redis databases and the Claude Desktop app. This server provides a set of standardized tools for LLMs to manage Redis key-value stores, making it easier to store, retrieve, and manipulate data.

Tools

The Redis MCP server offers the following tools for interacting with Redis:

set

  • Description: 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

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

delete

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

list

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

Configuration

To use the Redis MCP 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 (e.g., localhost). The Redis URL can be specified as an argument, defaulting to "redis://localhost:6379".

{
  "mcpServers": {
    "redis": {
      "command": "docker",
      "args": [
        "run", 
        "-i", 
        "--rm", 
        "mcp/redis", 
        "redis://host.docker.internal:6379"
      ]
    }
  }
}

NPX

Alternatively, you can use NPX to run the server:

{
  "mcpServers": {
    "redis": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-redis",
        "redis://localhost:6379"
      ]
    }
  }
}

Building

To build the Redis MCP server using Docker, run the following command:

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

License

This MCP server is licensed under the MIT License. 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.

Features & Capabilities

Categories
mcp_server model_context_protocol redis docker api_integration claude

Implementation Details

Stats

0 Views
27 GitHub Stars

Repository Info

modelcontextprotocol Organization

Similar MCP Servers

continuedev_continue by continuedev
25049
21423
9300