data
Redis Cloud MCP, CLI, and Lua Integration for AI Agents
Redis Cloud integration docs for AI agents: MCP gateway setup, Redis Cloud CLI commands, Lua API reference, credentials, and function schemas.Redis Cloud for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
redis-cloud.redis_cloud_get_current_account | Read read | 0 | Get the current Redis Cloud account information, including owner email, payment method, and plan details. |
redis-cloud.redis_cloud_list_subscriptions | Read read | 0 | List all subscriptions in the Redis Cloud account. Returns subscription IDs, names, regions, statuses, and database counts. |
redis-cloud.redis_cloud_get_subscription | Read read | 1 | Get details for a specific Redis Cloud subscription by ID, including plan, region, memory, throughput, and database list. |
redis-cloud.redis_cloud_list_databases | Read read | 1 | List all databases within a Redis Cloud subscription. Returns database IDs, names, endpoints, and statuses. |
redis-cloud.redis_cloud_get_database | Read read | 2 | Get details for a specific Redis Cloud database by subscription and database ID, including endpoint, memory usage, throughput, and replication status. |
redis-cloud.redis_cloud_list_teams | Read read | 0 | List all teams (ACL roles) in the Redis Cloud account. Returns team IDs, names, and member counts. |
redis-cloud.redis_cloud_get_team | Read read | 1 | Get details for a specific Redis Cloud team (ACL role) by ID, including roles, permissions, and assigned databases. |