R

Redis MCP

Read and write keys in a Redis server

Community·
5.0(1)
Repo Docs
Share:

About

Talk to a Redis instance: GET/SET keys, list keys by pattern, inspect TTLs, and use standard data-structure commands (hashes, lists, sorted sets). Handy for cache inspection, feature-flag stores, and lightweight queues.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table

Screenshots

No screenshots yet.

Install Redis MCP

Claude Desktop

Add this to claude_desktop_config.json.

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

Cursor

Add this to ~/.cursor/mcp.json.

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

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "redis": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-redis"
      ]
    }
  }
}

Reviews

5.0(1)
Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.