mcp-server-redis
MCP server for Redis with data operations, permission control, and operation logging. Supports key management, dynamic tool lists, and auto-reconnection.
README
MCP Redis Server
A MCP Redis server with data operations, permission control and operation logs.
Features
- ✅ Redis data operations (GET, SET, UPDATE, DELETE)
- ✅ Key management (CREATE, DROP, EXISTS, INFO)
- ✅ Dynamic tool list based on permissions
- ✅ Operation logging
- ✅ Connection management
- ✅ Auto-reconnection mechanism
- ✅ Health checks
- ✅ Error handling and recovery
Installation
Global Installation (Recommended)
npm install -g @liangshanli/mcp-server-redis
Local Installation
npm install @liangshanli/mcp-server-redis
From Source
git clone https://github.com/liliangshan/mcp-server-redis.git
cd mcp-server-redis
npm install
Configuration
Set environment variables:
export HOST=localhost
export PORT=6379
export PASSWORD=your_password
export ALLOW_INSERT=true
export ALLOW_UPDATE=true
export ALLOW_DELETE=true
export ALLOW_CREATE=true
export ALLOW_DROP=true
Usage
1. Direct Run (Global Installation)
mcp-server-redis
2. Using npx (Recommended)
npx @liangshanli/mcp-server-redis
3. Direct Start (Source Installation)
npm start
4. Managed Start (Recommended for Production)
npm run start-managed
Managed start provides:
- Auto-restart (up to 10 times)
- Error recovery
- Process management
- Logging
5. Development Mode
npm run dev
Editor Integration
Cursor Editor Configuration
- Create
.cursor/mcp.jsonfile in your project root:
{
"mcpServers": {
"redis": {
"command": "npx",
"args": ["@liangshanli/mcp-server-redis"],
"env": {
"HOST": "your_host",
"PORT": "6379",
"PASSWORD": "your_password",
"ALLOW_INSERT": "true",
"ALLOW_UPDATE": "true",
"ALLOW_DELETE": "true",
"ALLOW_CREATE": "true",
"ALLOW_DROP": "true"
}
}
}
}
VS Code Configuration
- Install the MCP extension for VS Code
- Create
.vscode/settings.jsonfile:
{
"mcp.servers": {
"redis": {
"command": "npx",
"args": ["@liangshanli/mcp-server-redis"],
"env": {
"HOST": "your_host",
"PORT": "6379",
"PASSWORD": "your_password",
"ALLOW_INSERT": "true",
"ALLOW_UPDATE": "true",
"ALLOW_DELETE": "true",
"ALLOW_CREATE": "true",
"ALLOW_DROP": "true"
}
}
}
}
As MCP Server
The server communicates with MCP clients via stdin/stdout after startup:
{"jsonrpc": "2.0", "id": 1, "method": "initialize", "params": {"protocolVersion": "2025-06-18"}}
Available Tools
-
get_data: Get data by key
{ "jsonrpc": "2.0", "id": 2, "method": "tools/call", "params": { "name": "get_data", "arguments": { "key": "user:123" } } } -
set_data: Set/insert data for a key
{ "jsonrpc": "2.0", "id": 3, "method": "tools/call", "params": { "name": "set_data", "arguments": { "key": "user:123", "value": "John Doe", "ttl": 3600 } } } -
list_keys: List Redis keys with pattern matching
{ "jsonrpc": "2.0", "id": 4, "method": "tools/call", "params": { "name": "list_keys", "arguments": { "pattern": "user:*", "limit": 10 } } }
Dynamic Tool List
The server dynamically shows/hides tools based on environment variables:
Read-Only Tools (Always Available)
get_data- Get data by keylist_keys- List keys with pattern matchingexists_key- Check if key existsget_key_info- Get key informationget_redis_info- Get Redis server informationget_database_stats- Get database statisticsget_memory_info- Get memory usage informationtest_connection- Test Redis connectionget_operation_logs- Get operation logscheck_permissions- Check current permissionsset_ttl- Set time to live for a keyremove_ttl- Remove time to live from a key
Conditional Tools (Based on Permissions)
set_data- RequiresALLOW_INSERT=trueupdate_data- RequiresALLOW_UPDATE=truedelete_data- RequiresALLOW_DELETE=truecreate_key- RequiresALLOW_CREATE=truedrop_key- RequiresALLOW_DROP=truerename_key- RequiresALLOW_CREATE=trueANDALLOW_DROP=true
Connection Management Features
- Auto-creation: Automatically creates Redis connection on
notifications/initialized - Health checks: Checks connection status every 5 minutes
- Auto-reconnection: Automatically reconnects when connection fails
- Connection reuse: Uses connection pool for better performance
- Graceful shutdown: Properly closes connections when server shuts down
Logging
Log file location: ./logs/mcp-redis.log
Logged content:
- All requests and responses
- Redis operation records
- Error messages
- Connection status changes
Error Handling
- Individual request errors don't affect the entire server
- Connection errors are automatically recovered
- Process exceptions are automatically restarted (managed mode)
Environment Variables
| Variable | Default | Description |
|---|---|---|
| HOST | localhost | Redis host address |
| PORT | 6379 | Redis port |
| PASSWORD | Redis password | |
| ALLOW_INSERT | true | Whether to allow insert operations. Set to 'false' to disable |
| ALLOW_UPDATE | true | Whether to allow update operations. Set to 'false' to disable |
| ALLOW_DELETE | true | Whether to allow delete operations. Set to 'false' to disable |
| ALLOW_CREATE | true | Whether to allow create key operations. Set to 'false' to disable |
| ALLOW_DROP | true | Whether to allow drop/delete key operations. Set to 'false' to disable |
| MCP_LOG_DIR | ./logs | Log directory |
| MCP_LOG_FILE | mcp-redis.log | Log filename |
Development
Project Structure
mcp-server-redis/
├── src/
│ ├── server-final.js # Main server file
│ └── utils/ # Utility modules
├── bin/
│ └── cli.js # CLI entry point
├── start-server.js # Managed startup script
├── package.json
└── README.md
Testing
npm test
Quick Start
1. Install Package
npm install -g @liangshanli/mcp-server-redis
2. Configure Environment Variables
export HOST=localhost
export PORT=6379
export PASSWORD=your_password
export ALLOW_INSERT=true
export ALLOW_UPDATE=true
export ALLOW_DELETE=true
export ALLOW_CREATE=true
export ALLOW_DROP=true
Permission Control Examples:
# Default: Enable all operations
export ALLOW_INSERT=true
export ALLOW_UPDATE=true
export ALLOW_DELETE=true
export ALLOW_CREATE=true
export ALLOW_DROP=true
# Read-only mode (safe mode)
export ALLOW_INSERT=false
export ALLOW_UPDATE=false
export ALLOW_DELETE=false
export ALLOW_CREATE=false
export ALLOW_DROP=false
# Allow insert and update, but disable delete operations
export ALLOW_INSERT=true
export ALLOW_UPDATE=true
export ALLOW_DELETE=false
export ALLOW_CREATE=true
export ALLOW_DROP=false
# Allow everything except DROP operations
export ALLOW_INSERT=true
export ALLOW_UPDATE=true
export ALLOW_DELETE=true
export ALLOW_CREATE=true
export ALLOW_DROP=false
3. Run Server
mcp-server-redis
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。