Loading...

This MCP server provides natural language access to Redis Cloud account management, subscription control, and database configuration, enabling users to manage Redis resources.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
This MCP server provides natural language access to Redis Cloud account management, subscription control, and database configuration, enabling users to manage Redis resources.
This MCP server allows both read and write operations on Redis Cloud resources. While API key authentication is used, the lack of granular permissions and the potential for destructive actions (like deleting subscriptions) make it moderately risky. It's safer for read-only tasks and riskier when creating or deleting resources.
Performance will be limited by the Redis Cloud API's rate limits and the network latency between the MCP server and the Redis Cloud infrastructure. Paginated responses may require multiple API calls.
Cost is primarily determined by Redis Cloud resource usage. API calls themselves may have associated costs depending on the Redis Cloud pricing model.
npx @modelcontextprotocol/inspector{
"mcpServers": {
"mcp-redis-cloud": {
"command": "node",
"args": ["--experimental-fetch", "<absolute_path_to_project_root>/dist/index.js"],
"env": {
"API_KEY": "<redis_cloud_api_key>",
"SECRET_KEY": "<redis_cloud_api_secret_key>"
}
}
}
}API_KEYget_current_accountRetrieves details about the current Redis Cloud account.
Read-only operation, no side effects.
get_current_payment_methodsLists all payment methods configured for the account.
Read-only operation, no side effects.
get_pro_subscriptionsLists all Pro subscriptions in the account.
Read-only operation, no side effects.
create_pro_subscriptionCreates a new Pro subscription with advanced configuration options.
Creates a new resource, but doesn't modify existing ones.
get_essential_subscriptionsLists all Essential subscriptions (paginated).
Read-only operation, no side effects.
get_essential_subscription_by_idGets detailed information about a specific Essential subscription.
Read-only operation, no side effects.
create_essential_subscriptionCreates a new Essential subscription.
Creates a new resource, but doesn't modify existing ones.
delete_essential_subscriptionDeletes an Essential subscription.
Deletes a resource, potentially causing data loss or service disruption.
get_database_modulesLists all available database modules supported in the account.
Read-only operation, no side effects.
get_pro_plans_regionsGets available regions across cloud providers.
Read-only operation, no side effects.
get_essentials_plansLists available Essential subscription plans (paginated).
Read-only operation, no side effects.
get_tasksLists all current tasks in the account.
Read-only operation, no side effects.
get_task_by_idGets detailed information about a specific task.
Read-only operation, no side effects.
API Key
cloud
This MCP server allows both read and write operations on Redis Cloud resources. While API key authentication is used, the lack of granular permissions and the potential for destructive actions (like deleting subscriptions) make it moderately risky. It's safer for read-only tasks and riskier when creating or deleting resources.
The agent has full read/write access to the Redis Cloud account based on the provided API key. There is no built-in sandboxing or rollback mechanism. Exercise caution when using autonomous mode.
Production Tip
Store API keys securely using a secrets manager and regularly rotate them.
Use a secrets manager or environment variable encryption to protect your API key.
No, this server does not implement RBAC. The API key has broad permissions.
No, there is no built-in rollback mechanism. Exercise caution when making changes.
No, there is no dry-run mode. Changes are applied directly to your Redis Cloud account.
Error handling is basic. Check the server logs and the Redis Cloud API for details.
Monitor the server logs for API calls and task status updates.
Yes, the Redis Cloud API has rate limits. Implement retry logic to handle rate limiting errors.