Redis MCP

Access a Redis server using any MCP client.

The Model Context Protocol (MCP) is a standard that lets AI agents access data and perform actions. Using MCP, your server can publish a set of commands that are usable by any MCP-compatible client app (such as Claude Desktop or VS Code). These commands can retrieve whatever data you wish to provide and you can also let the agent make changes to the data. For example, you could publish a feed of news items that an agent can use in its responses, and also let the agent add the user's comments to those items.

Redis MCP is a general-purpose implementation that lets agents read, write, and query data in Redis and also has some basic commands to manage the Redis server. With this enabled, you can use an LLM client as a very high-level interface to Redis. Add, query, and analyze any Redis data set directly from an LLM chat using instructions and questions like the following:

  • "Store the entire conversation in the 'recent_chats' stream"
  • "Cache this item"
  • "How many keys does my database have?"
  • "What is user:1's email?"

See the other pages in this section to learn how to set up and use Redis MCP. See also the GitHub repository for the latest changes.

RATE THIS PAGE
Back to top ↑