Redis Cloud API MCP Server

Redis Cloud API MCP Server

Natural language interface for managing Redis Cloud via Model Context Protocol

37
Stars
16
Forks
37
Watchers
1
Issues
Provides a Model Context Protocol (MCP) server that enables users to manage Redis Cloud resources and accounts using natural language commands. Supports integration with clients such as Claude Desktop and Cursor IDE, facilitating operations such as creating databases, managing subscriptions, retrieving billing information, and monitoring tasks. Offers standardized endpoints to simplify cloud provider and plan selection, as well as database module configuration and task tracking.

Key Features

Account detail and payment method retrieval
Pro and Essential subscription management
Database creation and module configuration
Multi-cloud and region deployment support
Subscription plan browsing with pricing details
Long-running task handling and tracking
Paginated data retrieval for large datasets
Integration with Claude Desktop and Cursor IDE
Natural language command processing
Support for custom networking and advanced deployments

Use Cases

Creating and configuring Redis databases using natural language
Querying active subscriptions and their details
Automating cloud provider and region selection for deployments
Managing payment methods and account information
Procuring new Redis Cloud resources via conversational interfaces
Monitoring the progress of tasks such as deployments or subscription changes
Browsing and selecting optimal subscription plans
Deleting or updating existing database subscriptions
Integrating Redis Cloud management into developer tools like IDEs
Assisting users in choosing the right Redis offering for specific applications

README

Redis Cloud API MCP Server

Model Context Protocol (MCP) is a standardized protocol for managing context between large language models (LLMs) and external systems. This repository provides an MCP Server for Redis Cloud's API, allowing you to manage your Redis Cloud resources using natural language.

This lets you use Claude Desktop, or any MCP Client, to use natural language to accomplish things on your Redis Cloud account, e.g.:

  • "Create a new Redis database in AWS"
  • "What are my current subscriptions?"
  • "Help me choose the right Redis database for my e-commerce application"

Features

Account Management

  • get_current_account: Get details about your current Redis Cloud account
  • get_current_payment_methods: List all payment methods configured for your account

Subscription Management

Pro Subscriptions

  • get_pro_subscriptions: List all Pro subscriptions in your account
  • create_pro_subscription: Create a new Pro subscription with advanced configuration options
    • Supports multi-cloud deployment
    • Configure memory, persistence, and modules
    • Set up Active-Active deployments
    • Custom networking configuration

Essential Subscriptions

  • get_essential_subscriptions: List all Essential subscriptions (paginated)
  • get_essential_subscription_by_id: Get detailed information about a specific Essential subscription
  • create_essential_subscription: Create a new Essential subscription
  • delete_essential_subscription: Delete an Essential subscription

Database Capabilities

  • get_database_modules: List all available database modules (capabilities) supported in your account
    • Redis modules
    • Database features
    • Performance options

Cloud Provider Management

  • get_pro_plans_regions: Get available regions across cloud providers
    • AWS regions
    • GCP regions
    • Networking options
    • Availability zones

Plans and Pricing

  • get_essentials_plans: List available Essential subscription plans (paginated)
    • Supports AWS, GCP, and Azure
    • Redis Flex options
    • Fixed plans

Task Management

  • get_tasks: List all current tasks in your account
  • get_task_by_id: Get detailed information about a specific task
    • Track deployment status
    • Monitor subscription changes
    • View task progress

Usage

Prerequisites

  • Valid Redis Cloud API credentials (API Key and Secret Key)
  • Task IDs are returned for long-running operations and can be monitored
  • Paginated responses require multiple calls to retrieve all data

Claude Desktop

To run the MCP server with Claude Desktop, follow these steps:

  1. Build the package:

    bash
    npm run build
    
  2. Add the server to Claude Desktop:

    • Open Claude Desktop settings
    • Navigate to the Developer tab (make sure you have enabled Developer Mode)
    • Click on "Edit config"
    • Open the claude_desktop_config.json file in your text editor and add the following configuration:
    json
    {
      "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>"
          }
        }
      }
    }
    
  3. Close Claude Desktop and restart it. The server should now be available in the MCP Servers section.

Cursor IDE

To run the MCP server with Cursor IDE, follow these steps:

  1. Build the package:

    bash
    npm run build
    
  2. Add the server to Cursor:

    • Open Cursor Settings
    • Navigate to the MCP tab
    • Click on "Add new global MCP Server"
    • Update the automatically opened mcp.json file with the following configuration:
    json
    {
      "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>"
          }
        }
      }
    }
    
  3. Restart Cursor. The server should now be available in the MCP Servers section.

Development

Prerequisites

  1. nvm (Node Version Manager)
  2. Node v22.14.0
  3. npm 10.9.2

Getting Started

  1. Install dependencies:

    bash
    nvm use v22.14.0
    npm install
    
  2. Build the project:

    bash
    npm run build
    
  3. Test it by using the MCP Inspector:

    bash
    npx @modelcontextprotocol/inspector node dist/index.js --api-key=<api_key> --secret-key=<secret_key>
    

Project Structure

src/
├── index.ts              # Entry point
├── clients/              # API Clients for external services
│   └── generated         # Generated Redis Cloud API client
└── tools/                # Tool implementations
    └── accounts/         # Account tools
    └── subscriptions/    # Subscription tools
    └── tasks/            # Task tools

Note: If you make changes to your code, remember to rebuild and restart Claude Desktop / Cursor:

bash
npm run build

Docker Usage

Building the Docker Image

To build the Docker image for the MCP server, run the following command:

bash
docker build -t mcp/redis-cloud .

Running the Docker Container

To run the container, use the following command:

bash
docker run -i --rm \
  -e API_KEY=<your_redis_cloud_api_key> \
  -e SECRET_KEY=<your_redis_cloud_api_secret_key> \
  mcp/redis-cloud

Docker Integration with Claude Desktop

To integrate the Dockerized MCP server with Claude Desktop, follow these steps:

  1. Build the Docker image (if you haven't already):

    bash
    docker build -t mcp/redis-cloud .
    
  2. Add the server to Claude Desktop:

    • Open Claude Desktop settings
    • Navigate to the Developer tab (ensure Developer Mode is enabled)
    • Click on "Edit config"
    • Open the claude_desktop_config.json file in your text editor
    • Add the following configuration:
    json
    {
      "mcpServers": {
        "redis-cloud": {
          "command": "docker",
          "args": [
            "run",
            "-i",
            "--rm",
            "-e",
            "API_KEY=<your_redis_cloud_api_key>",
            "-e",
            "SECRET_KEY=<your_redis_cloud_api_secret_key>",
            "mcp/redis-cloud"
          ]
        }
      }
    }
    
  3. Replace the placeholder values with your actual API credentials.

  4. Save the configuration file and restart Claude Desktop.

Notes

  • Ensure that the required environment variables (API_KEY, SECRET_KEY) are set correctly.

Star History

Star History Chart

Repository Owner

redis
redis

Organization

Repository Details

Language TypeScript
Default Branch main
Size 172 KB
Contributors 4
License MIT License
MCP Verified Nov 11, 2025

Programming Languages

TypeScript
98.81%
JavaScript
1%
Dockerfile
0.19%

Tags

Join Our Newsletter

Stay updated with the latest AI tools, news, and offers by subscribing to our weekly newsletter.

We respect your privacy. Unsubscribe at any time.

Related MCPs

Discover similar Model Context Protocol servers

  • Redis MCP Server

    Redis MCP Server

    Natural language interface for managing and querying Redis via the Model Context Protocol.

    Redis MCP Server provides an MCP-compliant interface for agentic applications to interact with Redis using natural language commands. It enables AI-driven workflows to store, search, and manage structured or unstructured data efficiently. The server integrates seamlessly with any MCP client, supporting full Redis data structures and advanced querying. It is designed for scalable, high-performance data operations and native support for Azure authentication.

    • 325
    • MCP
    • redis/mcp-redis
  • MongoDB MCP Server

    MongoDB MCP Server

    A Model Context Protocol server for enabling LLM interaction with MongoDB databases.

    MongoDB MCP Server empowers language models to interface directly with MongoDB databases using the Model Context Protocol (MCP). It enables natural language querying and management of collections, documents, and indexes. Users can inspect database schemas, execute document operations, and manage indexes seamlessly. The tool integrates with clients like Claude Desktop for conversational database management.

    • 172
    • MCP
    • QuantGeekDev/mongo-mcp
  • Nocodb MCP Server

    Nocodb MCP Server

    Natural language access and management for NocoDB using the Model Context Protocol.

    Nocodb MCP Server enables seamless CRUD operations and schema management on NocoDB databases via the Model Context Protocol (MCP). It allows users to perform database actions such as creating, reading, updating, deleting records, and altering table structures through natural language commands. The tool integrates easily with external platforms like Claude Desktop and supports both API and CLI usage. TypeScript-based, it provides modern maintainability and compatibility enhancements.

    • 54
    • MCP
    • edwinbernadus/nocodb-mcp-server
  • mcp-confluent

    mcp-confluent

    MCP server for managing Confluent Cloud resources via natural language.

    mcp-confluent is a Model Context Protocol (MCP) server implementation designed to enable natural language interaction with Confluent Cloud REST APIs. It integrates with AI tools such as Claude Desktop and Goose CLI, allowing users to manage Kafka topics, connectors, and Flink SQL statements conversationally. The project offers flexible configuration, CLI usage, and supports various transports for secure and customizable operations.

    • 115
    • MCP
    • confluentinc/mcp-confluent
  • mcp-server-docker

    mcp-server-docker

    Natural language management of Docker containers via Model Context Protocol.

    mcp-server-docker enables users to manage Docker containers using natural language instructions through the Model Context Protocol. It allows composing, introspecting, and debugging containers, as well as managing persistent Docker volumes. The tool is suitable for server administrators, tinkerers, and AI enthusiasts looking to leverage LLM capabilities for Docker management. Integration with tools like Claude Desktop and Docker ensures flexible deployment and easy connectivity to Docker engines.

    • 648
    • MCP
    • ckreiling/mcp-server-docker
  • Firefly MCP Server

    Firefly MCP Server

    Seamless resource discovery and codification for Cloud and SaaS with Model Context Protocol integration.

    Firefly MCP Server is a TypeScript-based server implementing the Model Context Protocol to enable integration with the Firefly platform for discovering and managing resources across Cloud and SaaS accounts. It supports secure authentication, resource codification into infrastructure as code, and easy integration with tools such as Claude and Cursor. The server can be configured via environment variables or command line and communicates using standardized MCP interfaces. Its features facilitate automation and codification workflows for cloud resource management.

    • 15
    • MCP
    • gofireflyio/firefly-mcp
  • Didn't find tool you were looking for?

    Be as detailed as possible for better results