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
Copy file name to clipboardExpand all lines: src/redis/README.md
+26-1Lines changed: 26 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,31 @@
2
2
3
3
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.
4
4
5
+
## Prerequisites
6
+
7
+
1. Redis server must be installed and running
8
+
-[Download Redis](https://redis.io/download)
9
+
- For Windows users: Use [Windows Subsystem for Linux (WSL)](https://redis.io/docs/getting-started/installation/install-redis-on-windows/) or [Memurai](https://www.memurai.com/) (Redis-compatible Windows server)
10
+
- Default port: 6379
11
+
12
+
## Common Issues & Solutions
13
+
14
+
### Connection Errors
15
+
16
+
**ECONNREFUSED**
17
+
-**Cause**: Redis server is not running or unreachable
18
+
-**Solution**:
19
+
- Verify Redis is running: `redis-cli ping` should return "PONG"
20
+
- Check Redis service status: `systemctl status redis` (Linux) or `brew services list` (macOS)
21
+
- Ensure correct port (default 6379) is not blocked by firewall
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.
105
+
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.
0 commit comments