antonio-mello-ai/mcp-redis-monitor
0 Views
0 Installs
🐍 🏠 - Read-only Redis monitoring — queue depths by type, Celery queue status, connected clients, server/memory stats, and key counts per database. 5 tools, built with FastMCP. Install: uvx mcp-redis-monitor.
Quick Install
One-Click IDE Configuration
claude_desktop_config.json
{
"mcpServers": {
"antonio-mello-ai-mcp-redis-monitor": {
"command": "npx",
"args": [
"-y",
"antonio-mello-ai-mcp-redis-monitor"
]
}
}
}Or
Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.
Documentation Overview
mcp-redis-monitor
FastMCP server providing read-only tools to monitor Redis instances.
Install
# Run directly with uvx (no install needed)
uvx mcp-redis-monitor
# Or install with pip
pip install mcp-redis-monitor
Environment Variables
| Variable | Default | Description |
|---|---|---|
REDIS_MONITOR_HOST | localhost | Redis host |
REDIS_MONITOR_PORT | 6379 | Redis port |
REDIS_MONITOR_PASSWORD | (none) | Redis password (optional) |
Tools
| Tool | Description |
|---|---|
get_queue_depths | Keys + length by type in a specific DB (default: 3) |
get_celery_queue_status | Celery queue names, pending count, oldest task |
get_connected_clients | Number of connected clients |
get_server_info | Memory, uptime, keyspace stats |
get_key_count_by_db | Keys per database (overview) |
Usage
mcp-redis-monitor
Or add to your MCP client configuration:
{
"mcpServers": {
"redis-monitor": {
"command": "mcp-redis-monitor"
}
}
}
Development
ruff check src/ tests/
ruff format src/ tests/
pytest
License
MIT