A modern CLI for Redis Cloud and Redis Enterprise — Automate deployments, manage resources, and troubleshoot issues from one unified interface.
# Create a Redis Cloud subscription with one command
redisctl subscription create @subscription.json --wait
# Stream logs in real-time
redisctl logs list --follow
# Generate and upload support packages
redisctl support-package cluster --optimize --uploadPrefix-free commands —
cloud/enterpriseprefixes are optional. The CLI infers the platform from your profile configuration. Use explicit prefixes in scripts or when multiple profiles exist.
Managing Redis Cloud and Redis Enterprise through REST APIs means juggling curl commands, parsing JSON, and manually polling for operation completion. redisctl eliminates that friction.
- One CLI for Everything — Manage both Redis Cloud and Enterprise from a single tool
- Intelligent Async Handling —
--waitflags automatically poll long-running operations - Real-Time Streaming — Tail logs and metrics with
--follow - Automated Workflows — High-level commands like
subscription-setuphandle complex tasks - Smart Output — Tables for humans, JSON for scripts, with JMESPath filtering built-in
- Production Ready — Secure credential storage, profile management, and comprehensive error handling
# Homebrew (macOS/Linux)
brew install redis-developer/homebrew-tap/redisctl
# Cargo
cargo install redisctl
# Or download from releases
# https://github.com/redis-developer/redisctl/releases# Redis Cloud
redisctl profile set prod \
--deployment cloud \
--api-key "$REDIS_CLOUD_API_KEY" \
--api-secret "$REDIS_CLOUD_SECRET_KEY"
# Redis Enterprise
redisctl profile set dev \
--deployment enterprise \
--url "https://cluster.local:9443" \
--username "admin@redis.local" \
--password "$REDIS_ENTERPRISE_PASSWORD"# List all databases (platform inferred from your profile)
redisctl database list
# Get cluster info in table format
redisctl cluster get -o table
# Create a database and wait for it to be ready
redisctl database create @db-config.json --wait
# Stream cluster logs
redisctl logs list --followTip: The commands above omit the
cloud/enterpriseprefix — the CLI infers the platform from your profile. You can always be explicit:redisctl cloud database listorredisctl enterprise cluster get.
That's it! You're ready to manage your Redis deployments.
No more manual polling. The --wait flag handles it automatically:
# Old way: Create and manually check status
curl -X POST .../databases -d @config.json
# Wait...check status...wait...check again...
# New way: Create and wait automatically
redisctl cloud database create @config.json --wait
# ✓ Database created and ready in 45s# Human-friendly tables
redisctl cloud subscription list -o table
# Machine-readable JSON
redisctl cloud database list -o json
# Filter with JMESPath
redisctl cloud database list -q 'databases[?status==`active`].name'Complex multi-step operations in one command:
# Set up a complete subscription with databases, ACLs, and networking
redisctl cloud workflow subscription-setup @workflow.yaml
# Results in:
# ✓ Subscription created
# ✓ VPC peering configured
# ✓ Databases provisioned
# ✓ ACL rules applied
# ✓ Ready for productionMonitor your infrastructure live:
# Tail cluster logs
redisctl enterprise logs list --follow
# Watch with custom poll interval
redisctl enterprise logs list --follow --poll-interval 1Generate diagnostic packages and upload to Redis Support in one step:
# Generate, optimize, and upload cluster diagnostics
redisctl enterprise support-package cluster \
--optimize \
--upload \
--no-save
# Saves 20-30% space and uploads directly to Files.com
# ✓ Package generated (542 MB)
# ✓ Optimized to 389 MB
# ✓ Uploaded to Redis Support# 1. Check available subscriptions
redisctl cloud subscription list -o table
# 2. Create database config
cat > database.json <<EOF
{
"name": "production-cache",
"protocol": "redis",
"memoryLimitInGb": 5.0,
"replication": true,
"dataEvictionPolicy": "allkeys-lru",
"throughputMeasurement": {
"by": "operations-per-second",
"value": 25000
}
}
EOF
# 3. Create and wait for provisioning
redisctl cloud database create \
--subscription 12345 \
database.json \
--wait \
-o json | jq '{id: .databaseId, endpoint: .publicEndpoint}'
# Output:
# {
# "id": 67890,
# "endpoint": "redis-12345.c1.us-east-1-1.ec2.redislabs.com:12000"
# }# 1. Check cluster health
redisctl enterprise cluster get -q 'name, state'
# 2. Stream logs for errors
redisctl enterprise logs list --follow | grep ERROR
# 3. Generate support package if needed
redisctl enterprise support-package cluster --optimize --upload
# 4. Check specific node
redisctl enterprise node get 1 -o table#!/bin/bash
# backup-all-databases.sh
# Get all active databases
databases=$(redisctl cloud database list \
-q 'databases[?status==`active`].[subscriptionId,databaseId]' \
-o json)
# Backup each one
echo "$databases" | jq -r '.[] | "\(.[0]) \(.[1])"' | while read sub_id db_id; do
echo "Backing up database $db_id..."
redisctl cloud database backup \
--subscription "$sub_id" \
--database "$db_id" \
--wait
done
echo "All backups complete!"# Create Active-Active database across multiple regions
redisctl cloud database create @crdb-config.json --wait
# Add a new region
redisctl cloud subscription add-aa-region \
--subscription 12345 \
@region-config.json \
--wait
# Monitor replication status
redisctl cloud database get 67890 \
-q 'replication.{status: status, regions: regions[].{name: region, status: status}}'brew install redis-developer/homebrew-tap/redisctl# Basic installation
cargo install redisctl
# With secure keyring support (recommended)
cargo install redisctl --features secure-storageDownload the latest release for your platform from GitHub Releases.
Binaries are available for:
- macOS (Intel and Apple Silicon)
- Linux (x86_64 and ARM64)
- Windows (x86_64)
# Run directly
docker run --rm \
-e REDIS_CLOUD_API_KEY \
-e REDIS_CLOUD_SECRET_KEY \
ghcr.io/redis-developer/redisctl:latest \
cloud subscription list
# Mount config for persistent profiles
docker run --rm \
-v ~/.config/redisctl:/root/.config/redisctl:ro \
ghcr.io/redis-developer/redisctl:latest \
cloud database list
# Development environment
docker compose up -d # Start test clusterThe fastest way to get started:
# Redis Cloud
export REDIS_CLOUD_API_KEY="your-api-key"
export REDIS_CLOUD_SECRET_KEY="your-secret-key"
# Redis Enterprise
export REDIS_ENTERPRISE_URL="https://cluster.local:9443"
export REDIS_ENTERPRISE_USER="admin@redis.local"
export REDIS_ENTERPRISE_PASSWORD="your-password"
export REDIS_ENTERPRISE_INSECURE="true" # For self-signed certsFor managing multiple environments:
# Create profiles
redisctl profile set prod --deployment cloud --api-key xxx --api-secret yyy
redisctl profile set staging --deployment cloud --api-key aaa --api-secret bbb
redisctl profile set dev --deployment enterprise --url https://localhost:9443 ...
# List profiles
redisctl profile list
# Use a specific profile
redisctl --profile prod cloud database list
# Set default
redisctl profile default-cloud prodStore credentials in your OS keyring instead of plain text:
# Requires: cargo install redisctl --features secure-storage
redisctl profile set prod \
--deployment cloud \
--api-key "$REDIS_CLOUD_API_KEY" \
--api-secret "$REDIS_CLOUD_SECRET_KEY" \
--use-keyring # Stores in macOS Keychain, Windows Credential Store, or Linux Secret ServiceConfig file location:
- Linux/macOS:
~/.config/redisctl/config.toml - Windows:
%APPDATA%\redis\redisctl\config.toml
Redis Cloud — 100% coverage of Cloud API v1:
- Subscriptions (Pro and Essentials)
- Databases (flexible and fixed)
- VPC Peering, Transit Gateway, PrivateLink, Private Service Connect
- ACLs, Users, Cloud Accounts
- Tasks and Async Operations
Redis Enterprise — 100% coverage of Enterprise API v1/v2:
- Clusters, Nodes, Shards
- Databases (BDBs), Active-Active (CRDBs)
- Users, Roles, LDAP
- Logs, Metrics, Alerts
- Support Packages, Diagnostics
For any endpoint not yet wrapped in a high-level command:
# Redis Cloud
redisctl api cloud get /subscriptions/12345/databases
redisctl api cloud post /databases -d @config.json
# Redis Enterprise
redisctl api enterprise get /v1/cluster
redisctl api enterprise put /v1/bdbs/1 -d @update.json# JMESPath filtering
redisctl cloud database list -q 'databases[?memoryLimitInGb > `10`]'
# Multiple output formats
redisctl enterprise cluster get -o table
redisctl enterprise cluster get -o json | jq
redisctl enterprise cluster get -o yamlUse the API client libraries from Python:
pip install redis-cloud redis-enterprisefrom redis_cloud import CloudClient
from redis_enterprise import EnterpriseClient
# Redis Cloud
cloud = CloudClient.from_env()
subs = cloud.subscriptions_sync()
# Redis Enterprise
enterprise = EnterpriseClient.from_env()
dbs = enterprise.databases_sync()
# Async support
async def main():
subs = await cloud.subscriptions()redisctl includes an MCP server (redisctl-mcp) that enables AI assistants to manage Redis deployments:
# Start the MCP server
redisctl-mcp --profile my-profile
# Enable write operations
redisctl-mcp --profile my-profile --read-only=falseConfigure your AI assistant (Claude Desktop, Cursor, etc.) to use it:
{
"mcpServers": {
"redisctl": {
"command": "redisctl-mcp",
"args": ["--profile", "my-profile", "--read-only=false"]
}
}
}Zero-install with Docker -- no local install needed:
{
"mcpServers": {
"redisctl": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "REDIS_ENTERPRISE_URL=https://cluster:9443",
"-e", "REDIS_ENTERPRISE_USER=admin@redis.local",
"-e", "REDIS_ENTERPRISE_PASSWORD",
"ghcr.io/redis-developer/redisctl",
"redisctl-mcp"
]
}
}
}See the MCP Documentation for full setup instructions including Docker options.
Individual crate changelogs:
- redisctl CLI - Command-line interface
- redisctl-config - Configuration management library
- redisctl-mcp - MCP server
The API client libraries are maintained in separate repositories:
- redis-cloud - Redis Cloud API client
- redis-enterprise - Redis Enterprise API client
Contributions welcome! See our Contributing Guide.
# Clone and build
git clone https://github.com/redis-developer/redisctl.git
cd redisctl
cargo build --release
# Run tests
cargo test --workspace
# Check code
cargo clippy --all-targets -- -D warnings
cargo fmt --all --checkLicensed under either of:
- Apache License, Version 2.0 (LICENSE-APACHE)
- MIT license (LICENSE-MIT)
at your option.