IntegrateIntegrate
Integrations

Redis Cloud Integration

Manage Redis Cloud subscriptions, databases, async tasks, and audit logs via the REST API

The Redis Cloud integration provides access to manage Redis Cloud subscriptions, databases, async tasks, and audit logs via the REST API through the Integrate MCP server.

Installation

The Redis Cloud integration is included with the SDK:

import { redisIntegration } from "integrate-sdk/server";

Setup

Add Redis Cloud to your server configuration. Provide credentials via environment variables or integration config:

import { createMCPServer, redisIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    redisIntegration({
      // See configuration options below
    }),
  ],
});

Client-Side Usage

import { client } from "integrate-sdk";

const result = await client.redis.listSubscriptions({});

console.log(result);

Environment Variables

  • REDIS_API_KEY (when supported by this integration)

Configuration Options

Prop

Type

Tools

redis_list_subscriptions

List subscriptions

No parameters.

redis_get_subscription

Get subscription

Prop

Type

redis_list_fixed_subscriptions

List fixed subscriptions

No parameters.

redis_get_fixed_subscription

Get fixed subscription

Prop

Type

redis_list_databases

List databases

Prop

Type

redis_get_database

Get database

Prop

Type

redis_create_database

Create database

Prop

Type

redis_update_database

Update database

Prop

Type

redis_delete_database

Delete database

Prop

Type

redis_list_essentials_databases

List essentials databases

Prop

Type

redis_get_essentials_database

Get essentials database

Prop

Type

redis_create_essentials_database

Create essentials database

Prop

Type

redis_update_essentials_database

Update essentials database

Prop

Type

redis_delete_essentials_database

Delete essentials database

Prop

Type

redis_get_task

Get task

Prop

Type

redis_list_logs

List logs

Prop

Type

Notes

  • Category: Infrastructure
  • Authentication mode: API key

On this page