Redis

Redis

By modelcontextprotocol GitHub

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.

redis database
Overview

what is Redis?

Redis is a Model Context Protocol server that provides access to Redis databases, enabling LLMs to interact with Redis key-value stores through standardized tools.

how to use Redis?

To use Redis, configure it in the "mcpServers" section of your claude_desktop_config.json or run it using Docker or NPX commands as specified in the documentation.

key features of Redis?

  • Set, get, delete, and list operations for Redis key-value pairs.
  • Supports optional expiration for keys.
  • Easy integration with Claude Desktop and Docker.

use cases of Redis?

  1. Storing and retrieving user session data.
  2. Caching frequently accessed data for faster retrieval.
  3. Managing real-time data feeds in applications.

FAQ from Redis?

  • What is the default Redis URL?

The default Redis URL is "redis://localhost:6379".

  • Can I run Redis in a Docker container?

Yes! You can run Redis using Docker with the provided command.

  • Is Redis open source?

Yes! Redis is licensed under the MIT License, allowing free use, modification, and distribution.

Content

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"
{
  "mcpServers": {
    "redis": {
      "command": "docker",
      "args": [
        "run", 
        "-i", 
        "--rm", 
        "mcp/redis", 
        "redis://host.docker.internal:6379"]
    }
  }
}

NPX

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

Building

Docker:

docker 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.

Tools

hmset

Set multiple hash fields to multiple values

hget

Get the value of a hash field

hgetall

Get all the fields and values in a hash

scan

Scan Redis keys matching a pattern

set

Set string value with optional NX (only if not exists) and PX (expiry in milliseconds) options

get

Get string value

del

Delete a key

zadd

Add one or more members to a sorted set

zrange

Return a range of members from a sorted set by index

zrangebyscore

Return members from a sorted set with scores between min and max

zrem

Remove one or more members from a sorted set

sadd

Add one or more members to a set

smembers

Get all members in a set
Postgres
Postgres by guoling2008

-

postgres database
View Details
Sqlite
Sqlite by sqlite

Database interaction and business intelligence capabilities

sqlite database
View Details
mcp-db-server
mcp-db-server by iotassss

-

mcp-db-server database
View Details
mcp-lancedb-server
mcp-lancedb-server by richard-gyiko

-

mcp-lancedb-server database
View Details
db-mcp
db-mcp by goru00

Database Model Context Protocol (DB-MCP) Server

db-mcp database
View Details

mysql数据库连接,改 f4ww4z/mcp-mysql-server中的连接配置支持cherry studio

mcp-mysql-server database
View Details

Mirror of

mysql database
View Details