You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -52,6 +54,7 @@ The Redis MCP Server is a **natural language interface** designed for agentic ap
52
54
-**Full Redis Support**: Handles **hashes, lists, sets, sorted sets, streams**, and more.
53
55
-**Search & Filtering**: Supports efficient data retrieval and searching in Redis.
54
56
-**Scalable & Lightweight**: Designed for **high-performance** data operations.
57
+
- The Redis MCP Server supports the `stdio`[transport](https://modelcontextprotocol.io/docs/concepts/transports#standard-input%2Foutput-stdio). Support to the `stremable-http` transport will be added in the future.
55
58
56
59
## Tools
57
60
@@ -73,11 +76,21 @@ Additional tools.
73
76
74
77
## Installation
75
78
76
-
The Redis MCP Server supports the `stdio`[transport](https://modelcontextprotocol.io/docs/concepts/transports#standard-input%2Foutput-stdio). Support to the `stremable-http` transport will be added in the future.
79
+
The Redis MCP Server is available as a Python package, and can be installed from PyPI.
77
80
78
-
> No PyPi package is available at the moment.
81
+
```sh
82
+
pip install redis-mcp-server
83
+
```
84
+
85
+
Alternatively you can use `uv` to install the package and its dependencies.
86
+
87
+
```sh
88
+
uv python install 3.13
89
+
uv sync
90
+
uv run redis-mcp-server --url redis://localhost:6379/0
91
+
```
79
92
80
-
### Quick Start with uvx
93
+
### Running the latest bits
81
94
82
95
The easiest way to use the Redis MCP Server is with `uvx`, which allows you to run it directly from GitHub (from a branch, or use a tagged release). It is recommended to use a tagged release, the `main` branch is under active development and may contain breaking changes. As an example, you can execute the following command to run the `0.2.0` release:
0 commit comments