{"id":27145420,"url":"https://github.com/redis/mcp-redis-cloud","last_synced_at":"2025-04-08T09:35:28.826Z","repository":{"id":286758545,"uuid":"956477944","full_name":"redis/mcp-redis-cloud","owner":"redis","description":null,"archived":false,"fork":false,"pushed_at":"2025-04-08T07:31:13.000Z","size":165,"stargazers_count":9,"open_issues_count":2,"forks_count":1,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-04-08T08:32:58.735Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/redis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-28T10:18:18.000Z","updated_at":"2025-04-07T23:25:13.000Z","dependencies_parsed_at":"2025-04-08T08:43:53.564Z","dependency_job_id":null,"html_url":"https://github.com/redis/mcp-redis-cloud","commit_stats":null,"previous_names":["redis/mcp-redis-cloud"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redis%2Fmcp-redis-cloud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redis%2Fmcp-redis-cloud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redis%2Fmcp-redis-cloud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redis%2Fmcp-redis-cloud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/redis","download_url":"https://codeload.github.com/redis/mcp-redis-cloud/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247814135,"owners_count":21000507,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-08T09:32:38.343Z","updated_at":"2025-04-08T09:35:28.818Z","avatar_url":"https://github.com/redis.png","language":"TypeScript","funding_links":[],"categories":["Cloud \u0026 Infrastructure","Database \u0026 Messaging MCP Servers","サーバー実装","Databases","Cloud Services","🌐 Web Development"],"sub_categories":["Cloud Platforms","💰 \u003ca name=\"finance--fintech\"\u003e\u003c/a\u003e金融・フィンテック","How to Submit","☁️ \u003ca name=\"cloud-platforms\"\u003e\u003c/a\u003eクラウドプラットフォーム"],"readme":"# Redis Cloud API MCP Server\n\nModel 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.\n\nThis lets you use Claude Desktop, or any MCP Client, to use natural language to accomplish things on your Redis Cloud account, e.g.:\n\n- \"Create a new Redis database in AWS\"\n- \"What are my current subscriptions?\"\n- \"Help me choose the right Redis database for my e-commerce application\"\n\n## Features\n\n### Account Management\n- `get_current_account`: Get details about your current Redis Cloud account\n- `get_current_payment_methods`: List all payment methods configured for your account\n\n### Subscription Management\n\n#### Pro Subscriptions\n- `get_pro_subscriptions`: List all Pro subscriptions in your account\n- `create_pro_subscription`: Create a new Pro subscription with advanced configuration options\n  - Supports multi-cloud deployment\n  - Configure memory, persistence, and modules\n  - Set up Active-Active deployments\n  - Custom networking configuration\n\n#### Essential Subscriptions\n- `get_essential_subscriptions`: List all Essential subscriptions (paginated)\n- `get_essential_subscription_by_id`: Get detailed information about a specific Essential subscription\n- `create_essential_subscription`: Create a new Essential subscription\n- `delete_essential_subscription`: Delete an Essential subscription\n\n### Database Capabilities\n- `get_database_modules`: List all available database modules (capabilities) supported in your account\n  - Redis modules\n  - Database features\n  - Performance options\n\n### Cloud Provider Management\n- `get_pro_plans_regions`: Get available regions across cloud providers\n  - AWS regions\n  - GCP regions\n  - Networking options\n  - Availability zones\n\n### Plans and Pricing\n- `get_essentials_plans`: List available Essential subscription plans (paginated)\n  - Supports AWS, GCP, and Azure\n  - Redis Flex options\n  - Fixed plans\n\n### Task Management\n- `get_tasks`: List all current tasks in your account\n- `get_task_by_id`: Get detailed information about a specific task\n  - Track deployment status\n  - Monitor subscription changes\n  - View task progress\n\n\n## Usage\n\n#### Prerequisites\n- Valid Redis Cloud API credentials (API Key and Secret Key)\n- Task IDs are returned for long-running operations and can be monitored\n- Paginated responses require multiple calls to retrieve all data\n\n\n### Claude Desktop\n\nTo run the MCP server with Claude Desktop, follow these steps:\n\n1. Build the package:\n   ```bash\n   npm run build\n   ```\n\n2. Add the server to Claude Desktop:\n    - Open Claude Desktop settings\n    - Navigate to the Developer tab (make sure you have enabled Developer Mode)\n    - Click on \"Edit config\"\n    - Open the `claude_desktop_config.json` file in your text editor and add the following configuration:\n   ```json\n   {\n     \"mcpServers\": {\n       \"mcp-redis-cloud\": {\n         \"command\": \"node\",\n         \"args\": [\"--experimental-fetch\", \"\u003cabsolute_path_to_project_root\u003e/dist/index.js\"],\n         \"env\": {\n           \"API_KEY\": \"\u003credis_cloud_api_key\u003e\",\n           \"SECRET_KEY\": \"\u003credis_cloud_api_secret_key\u003e\"\n         }\n       }\n     }\n   }\n   ```\n\n3. Close Claude Desktop and restart it. The server should now be available in the MCP Servers section.\n\n### Cursor IDE\n\nTo run the MCP server with Cursor IDE, follow these steps:\n\n1. Build the package:\n   ```bash\n   npm run build\n   ```\n\n2. Add the server to Cursor:\n    - Open Cursor Settings\n    - Navigate to the MCP tab\n    - Click on \"Add new global MCP Server\"\n    - Update the automatically opened `mcp.json` file with the following configuration:\n   ```json\n   {\n     \"mcpServers\": {\n       \"mcp-redis-cloud\": {\n         \"command\": \"node\",\n         \"args\": [\"--experimental-fetch\", \"\u003cabsolute_path_to_project_root\u003e/dist/index.js\"],\n         \"env\": {\n           \"API_KEY\": \"\u003credis_cloud_api_key\u003e\",\n           \"SECRET_KEY\": \"\u003credis_cloud_api_secret_key\u003e\"\n         }\n       }\n     }\n   }\n   ```\n\n3. Restart Cursor. The server should now be available in the MCP Servers section.\n\n\n## Development\n\n### Prerequisites\n\n1. nvm (Node Version Manager)\n2. Node v22.14.0\n3. npm 10.9.2\n\n### Getting Started\n\n1. Install dependencies:\n   ```bash\n   nvm use v22.14.0\n   npm install\n   ```\n\n2. Build the project:\n   ```bash\n   npm run build\n   ```\n\n3. Test it by using the MCP Inspector:\n    ```bash\n    npx @modelcontextprotocol/inspector node dist/index.js --api-key=\u003capi_key\u003e --secret-key=\u003csecret_key\u003e\n    ```\n\n### Project Structure\n\n```\nsrc/\n├── index.ts              # Entry point\n├── clients/              # API Clients for external services\n│   └── generated         # Generated Redis Cloud API client\n└── tools/                # Tool implementations\n    └── accounts/         # Account tools\n    └── subscriptions/    # Subscription tools\n    └── tasks/            # Task tools\n```\n\n\nNote: If you make changes to your code, remember to rebuild and restart Claude Desktop / Cursor:\n```bash\nnpm run build\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredis%2Fmcp-redis-cloud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fredis%2Fmcp-redis-cloud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredis%2Fmcp-redis-cloud/lists"}