Skip to main content

AWS ElastiCache MCP Server

The official MCP Server for interacting with AWS ElastiCache control plane. In order to interact with your data in ElastiCache Serverless caches and self-designed clusters use the Valkey MCP Server or the Memcached MCP Server.

Available MCP Tools

Serverless Cache Operations

  • create-serverless-cache - Create a new ElastiCache serverless cache
  • delete-serverless-cache - Delete a serverless cache
  • describe-serverless-caches - Get information about serverless caches
  • modify-serverless-cache - Modify settings of a serverless cache
  • connect-jump-host-serverless-cache - Configure an EC2 instance as a jump host for serverless cache access
  • create-jump-host-serverless-cache - Create an EC2 jump host to access a serverless cache via SSH tunnel
  • get-ssh-tunnel-command-serverless-cache - Generate SSH tunnel command for serverless cache access

Replication Group Operations

  • create-replication-group - Create an Amazon ElastiCache replication group with specified configuration
  • delete-replication-group - Delete an ElastiCache replication group with optional final snapshot
  • describe-replication-groups - Get detailed information about one or more replication groups
  • modify-replication-group - Modify settings of an existing replication group
  • modify-replication-group-shard-configuration - Modify the shard configuration of a replication group
  • test-migration - Test migration from a Redis instance to an ElastiCache replication group
  • start-migration - Start migration from a Redis instance to an ElastiCache replication group
  • complete-migration - Complete migration from a Redis instance to an ElastiCache replication group
  • connect-jump-host-replication-group - Configure an EC2 instance as a jump host for replication group access
  • create-jump-host-replication-group - Create an EC2 jump host to access a replication group via SSH tunnel
  • get-ssh-tunnel-command-replication-group - Generate SSH tunnel command for replication group access

Cache Cluster Operations

  • create-cache-cluster - Create a new ElastiCache cache cluster
  • delete-cache-cluster - Delete a cache cluster with optional final snapshot
  • describe-cache-clusters - Get detailed information about one or more cache clusters
  • modify-cache-cluster - Modify settings of an existing cache cluster
  • connect-jump-host-cache-cluster - Configure an EC2 instance as a jump host for cluster access
  • create-jump-host-cache-cluster - Create an EC2 jump host to access a cluster via SSH tunnel
  • get-ssh-tunnel-command-cache-cluster - Generate SSH tunnel command for cluster access

CloudWatch Operations

  • get-metric-statistics - Get CloudWatch metric statistics for ElastiCache resources with customizable time periods and dimensions

CloudWatch Logs Operations

  • describe-log-groups - List and describe CloudWatch Logs log groups
  • create-log-group - Create a new CloudWatch Logs log group
  • describe-log-streams - List and describe log streams in a log group
  • filter-log-events - Search and filter log events across log streams
  • get-log-events - Retrieve log events from a specific log stream

Firehose Operations

  • list-delivery-streams - List your Kinesis Data Firehose delivery streams

Cost Explorer Operations

  • get-cost-and-usage - Get cost and usage data for ElastiCache resources with customizable time periods and granularity

Misc Operations

  • describe-cache-engine-versions - List available cache engines and their versions
  • describe-engine-default-parameters - Get default parameters for a cache engine family
  • describe-events - Get events related to clusters, security groups, and parameters
  • describe-service-updates - Get information about available service updates
  • batch-apply-update-action - Apply service updates to resources
  • batch-stop-update-action - Stop service updates on resources

Instructions

The official MCP Server for interacting with AWS ElastiCache provides a comprehensive set of tools for managing ElastiCache resources. Each tool maps directly to ElastiCache API operations and supports all relevant parameters.

To use these tools, ensure you have proper AWS credentials configured with appropriate permissions for ElastiCache operations. The server will automatically use credentials from environment variables (AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_SESSION_TOKEN) or other standard AWS credential sources.

All tools support an optional region_name parameter to specify which AWS region to operate in. If not provided, it will use the AWS_REGION environment variable or default to 'us-west-2'.

Prerequisites

  1. Install uv from Astral or the GitHub README
  2. Install Python using uv python install 3.10
  3. Set up AWS credentials with access to AWS services
    • Consider setting up Read-only permission if you don't want the LLM to modify any resources

Installation

Kiro Cursor VS Code
Add to Kiro Install MCP Server Install on VS Code

Add the MCP to your favorite agentic tools. (e.g. for Kiro, ~/.kiro/settings/mcp.json):

{
  "mcpServers": {
    "awslabs.elasticache-mcp-server": {
      "command": "uvx",
      "args": ["awslabs.elasticache-mcp-server@latest"],
      "env": {
        "AWS_PROFILE": "default",
        "AWS_REGION": "us-west-2",
        "FASTMCP_LOG_LEVEL": "ERROR"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

If you would like to prevent the MCP from taking any mutating actions (i.e. Create/Update/Delete Resource), you can specify the readonly flag as demonstrated below:

{
  "mcpServers": {
    "awslabs.elasticache-mcp-server": {
      "command": "uvx",
      "args": [
        "awslabs.elasticache-mcp-server@latest",
        "--readonly"
      ],
      "env": {
        "AWS_PROFILE": "default",
        "AWS_REGION": "us-west-2",
        "FASTMCP_LOG_LEVEL": "ERROR"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

Windows Installation

For Windows users, the MCP server configuration format is slightly different:

{
  "mcpServers": {
    "awslabs.elasticache-mcp-server": {
      "disabled": false,
      "timeout": 60,
      "type": "stdio",
      "command": "uv",
      "args": [
        "tool",
        "run",
        "--from",
        "awslabs.elasticache-mcp-server@latest",
        "awslabs.elasticache-mcp-server.exe"
      ],
      "env": {
        "FASTMCP_LOG_LEVEL": "ERROR",
        "AWS_PROFILE": "your-aws-profile",
        "AWS_REGION": "us-east-1"
      }
    }
  }
}

or docker after a successful docker build -t awslabs/elasticache-mcp-server .:

{
  "mcpServers": {
    "awslabs.elasticache-mcp-server": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "--interactive",
        "--env",
        "FASTMCP_LOG_LEVEL=ERROR",
        "awslabs/elasticache-mcp-server:latest",
        "--readonly" // Optional paramter if you would like to restrict the MCP to only read actions
      ],
      "env": {},
      "disabled": false,
      "autoApprove": []
    }
  }
}

Configuration

AWS Configuration

Configure AWS credentials and region:

# AWS settings
AWS_PROFILE=default              # AWS credential profile to use
AWS_REGION=us-east-1            # AWS region to connect to

Connection Settings

Configure connection behavior and timeouts:

# Connection settings
ELASTICACHE_MAX_RETRIES=3        # Maximum number of retry attempts for AWS API calls
ELASTICACHE_RETRY_MODE=standard  # AWS SDK retry mode for API calls
ELASTICACHE_CONNECT_TIMEOUT=5    # Connection timeout in seconds
ELASTICACHE_READ_TIMEOUT=10      # Read timeout in seconds

# Cost Explorer settings
COST_EXPLORER_MAX_RETRIES=3      # Maximum number of retry attempts for Cost Explorer API calls
COST_EXPLORER_RETRY_MODE=standard # AWS SDK retry mode for Cost Explorer API calls
COST_EXPLORER_CONNECT_TIMEOUT=5   # Connection timeout in seconds for Cost Explorer
COST_EXPLORER_READ_TIMEOUT=10     # Read timeout in seconds for Cost Explorer

# CloudWatch settings
CLOUDWATCH_MAX_RETRIES=3         # Maximum number of retry attempts for CloudWatch API calls
CLOUDWATCH_RETRY_MODE=standard    # AWS SDK retry mode for CloudWatch API calls
CLOUDWATCH_CONNECT_TIMEOUT=5      # Connection timeout in seconds for CloudWatch
CLOUDWATCH_READ_TIMEOUT=10        # Read timeout in seconds for CloudWatch

# CloudWatch Logs settings
CLOUDWATCH_LOGS_MAX_RETRIES=3     # Maximum number of retry attempts for CloudWatch Logs API calls
CLOUDWATCH_LOGS_RETRY_MODE=standard # AWS SDK retry mode for CloudWatch Logs API calls
CLOUDWATCH_LOGS_CONNECT_TIMEOUT=5  # Connection timeout in seconds for CloudWatch Logs
CLOUDWATCH_LOGS_READ_TIMEOUT=10    # Read timeout in seconds for CloudWatch Logs

# Firehose settings
FIREHOSE_MAX_RETRIES=3            # Maximum number of retry attempts for Firehose API calls
FIREHOSE_RETRY_MODE=standard      # AWS SDK retry mode for Firehose API calls
FIREHOSE_CONNECT_TIMEOUT=5        # Connection timeout in seconds for Firehose
FIREHOSE_READ_TIMEOUT=10          # Read timeout in seconds for Firehose

The server automatically handles:

  • AWS authentication and credential management
  • Connection establishment and management
  • Automatic retrying of failed operations
  • Timeout enforcement and error handling

Development

Running Tests

uv venv
source .venv/bin/activate
uv sync
uv run --frozen pytest

Building Docker Image

docker build -t awslabs/elasticache-mcp-server .

Running Docker Container

docker run -p 8080:8080 \
  -e AWS_PROFILE=default \
  -e AWS_REGION=us-west-2 \
  awslabs/elasticache-mcp-server

Release files for awslabs.elasticache-mcp-server 0.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for awslabs.elasticache-mcp-server 0.2.0
File Size Uploaded
awslabs_elasticache_mcp_server-0.2.0.tar.gz 180.1 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for awslabs.elasticache-mcp-server 0.2.0
File Interpreter ABI Platform
awslabs_elasticache_mcp_server-0.2.0-py3-none-any.whl Python 3 none any Details

Total release size: 279.6 kB

Release files / awslabs_elasticache_mcp_server-0.2.0.tar.gz

Download URL awslabs_elasticache_mcp_server-0.2.0.tar.gz
Size 180.1 kB
Tags Source
SHA-256 checksum
How to use checksums
660152eef85d6b15865ba4b9e184c3cf0188e509f35e34f440e0880409e088c3
BLAKE2b-256 checksum
How to use checksums
5f875ce77fadaa3278ac883e456a17842122b4d9c9b92090cf99bb786e518cf6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / awslabs_elasticache_mcp_server-0.2.0-py3-none-any.whl

Download URL awslabs_elasticache_mcp_server-0.2.0-py3-none-any.whl
Size 99.5 kB
Tags Python 3
SHA-256 checksum
How to use checksums
ed7805817a43846cad528f4b6e87f06d59b1d844c368dc97d1327ff69f476242
BLAKE2b-256 checksum
How to use checksums
2b8a98205a0b62462c729837a15d41a9c2f25fcbfa275d22a6a7c4bbd8a7a44e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release history Release notifications | RSS feed

0.2.1

2 release files

This release

0.2.0 This release

2 release files

0.1.23

2 release files

0.1.21

2 release files

0.1.17

2 release files

0.1.13

2 release files

0.1.11

2 release files

0.1.10

2 release files

0.1.9

2 release files

0.1.8

2 release files

0.1.7

2 release files

0.1.5

2 release files

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page