awslabs.elasticache-mcp-server 0.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- awslabs/__init__.py +16 -0
- awslabs/elasticache_mcp_server/__init__.py +17 -0
- awslabs/elasticache_mcp_server/common/__init__.py +15 -0
- awslabs/elasticache_mcp_server/common/connection.py +117 -0
- awslabs/elasticache_mcp_server/common/decorators.py +41 -0
- awslabs/elasticache_mcp_server/common/server.py +30 -0
- awslabs/elasticache_mcp_server/context.py +39 -0
- awslabs/elasticache_mcp_server/main.py +52 -0
- awslabs/elasticache_mcp_server/tools/__init__.py +15 -0
- awslabs/elasticache_mcp_server/tools/cc/__init__.py +31 -0
- awslabs/elasticache_mcp_server/tools/cc/connect.py +444 -0
- awslabs/elasticache_mcp_server/tools/cc/create.py +212 -0
- awslabs/elasticache_mcp_server/tools/cc/delete.py +65 -0
- awslabs/elasticache_mcp_server/tools/cc/describe.py +80 -0
- awslabs/elasticache_mcp_server/tools/cc/modify.py +159 -0
- awslabs/elasticache_mcp_server/tools/cc/parsers.py +78 -0
- awslabs/elasticache_mcp_server/tools/cc/processors.py +74 -0
- awslabs/elasticache_mcp_server/tools/ce/__init__.py +19 -0
- awslabs/elasticache_mcp_server/tools/ce/get_cost_and_usage.py +76 -0
- awslabs/elasticache_mcp_server/tools/cw/__init__.py +19 -0
- awslabs/elasticache_mcp_server/tools/cw/get_metric_statistics.py +85 -0
- awslabs/elasticache_mcp_server/tools/cwlogs/__init__.py +29 -0
- awslabs/elasticache_mcp_server/tools/cwlogs/create_log_group.py +68 -0
- awslabs/elasticache_mcp_server/tools/cwlogs/describe_log_groups.py +123 -0
- awslabs/elasticache_mcp_server/tools/cwlogs/describe_log_streams.py +120 -0
- awslabs/elasticache_mcp_server/tools/cwlogs/filter_log_events.py +122 -0
- awslabs/elasticache_mcp_server/tools/cwlogs/get_log_events.py +99 -0
- awslabs/elasticache_mcp_server/tools/firehose/__init__.py +19 -0
- awslabs/elasticache_mcp_server/tools/firehose/list_delivery_streams.py +63 -0
- awslabs/elasticache_mcp_server/tools/misc/__init__.py +31 -0
- awslabs/elasticache_mcp_server/tools/misc/batch_apply_update_action.py +62 -0
- awslabs/elasticache_mcp_server/tools/misc/batch_stop_update_action.py +62 -0
- awslabs/elasticache_mcp_server/tools/misc/describe_cache_engine_versions.py +79 -0
- awslabs/elasticache_mcp_server/tools/misc/describe_engine_default_parameters.py +64 -0
- awslabs/elasticache_mcp_server/tools/misc/describe_events.py +86 -0
- awslabs/elasticache_mcp_server/tools/misc/describe_service_updates.py +71 -0
- awslabs/elasticache_mcp_server/tools/rg/__init__.py +54 -0
- awslabs/elasticache_mcp_server/tools/rg/complete_migration.py +94 -0
- awslabs/elasticache_mcp_server/tools/rg/connect.py +537 -0
- awslabs/elasticache_mcp_server/tools/rg/create.py +318 -0
- awslabs/elasticache_mcp_server/tools/rg/delete.py +68 -0
- awslabs/elasticache_mcp_server/tools/rg/describe.py +68 -0
- awslabs/elasticache_mcp_server/tools/rg/modify.py +236 -0
- awslabs/elasticache_mcp_server/tools/rg/parsers.py +268 -0
- awslabs/elasticache_mcp_server/tools/rg/processors.py +227 -0
- awslabs/elasticache_mcp_server/tools/rg/start_migration.py +151 -0
- awslabs/elasticache_mcp_server/tools/rg/test_migration.py +139 -0
- awslabs/elasticache_mcp_server/tools/serverless/__init__.py +37 -0
- awslabs/elasticache_mcp_server/tools/serverless/connect.py +451 -0
- awslabs/elasticache_mcp_server/tools/serverless/create.py +174 -0
- awslabs/elasticache_mcp_server/tools/serverless/delete.py +49 -0
- awslabs/elasticache_mcp_server/tools/serverless/describe.py +69 -0
- awslabs/elasticache_mcp_server/tools/serverless/models.py +160 -0
- awslabs/elasticache_mcp_server/tools/serverless/modify.py +95 -0
- awslabs_elasticache_mcp_server-0.1.1.dist-info/METADATA +257 -0
- awslabs_elasticache_mcp_server-0.1.1.dist-info/RECORD +60 -0
- awslabs_elasticache_mcp_server-0.1.1.dist-info/WHEEL +4 -0
- awslabs_elasticache_mcp_server-0.1.1.dist-info/entry_points.txt +2 -0
- awslabs_elasticache_mcp_server-0.1.1.dist-info/licenses/LICENSE +175 -0
- awslabs_elasticache_mcp_server-0.1.1.dist-info/licenses/NOTICE +2 -0
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: awslabs.elasticache-mcp-server
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: An AWS Labs Model Context Protocol (MCP) server for Amazon ElastiCache
|
|
5
|
+
Project-URL: homepage, https://awslabs.github.io/mcp/
|
|
6
|
+
Project-URL: docs, https://awslabs.github.io/mcp/servers/elasticache-mcp-server/
|
|
7
|
+
Project-URL: documentation, https://awslabs.github.io/mcp/servers/elasticache-mcp-server/
|
|
8
|
+
Project-URL: repository, https://github.com/awslabs/mcp.git
|
|
9
|
+
Project-URL: changelog, https://github.com/awslabs/mcp/blob/main/src/elasticache-mcp-server/CHANGELOG.md
|
|
10
|
+
Author: Amazon Web Services
|
|
11
|
+
Author-email: AWSLabs MCP <203918161+awslabs-mcp@users.noreply.github.com>, seaofawareness <utkarshshah@gmail.com>
|
|
12
|
+
License: Apache-2.0
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
License-File: NOTICE
|
|
15
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Classifier: Programming Language :: Python
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Requires-Python: >=3.10
|
|
24
|
+
Requires-Dist: boto3>=1.34.0
|
|
25
|
+
Requires-Dist: loguru>=0.7.0
|
|
26
|
+
Requires-Dist: mcp[cli]>=1.6.0
|
|
27
|
+
Requires-Dist: pydantic>=2.10.6
|
|
28
|
+
Provides-Extra: dev
|
|
29
|
+
Requires-Dist: commitizen>=4.2.2; extra == 'dev'
|
|
30
|
+
Requires-Dist: pre-commit>=4.1.0; extra == 'dev'
|
|
31
|
+
Requires-Dist: pyright>=1.1.398; extra == 'dev'
|
|
32
|
+
Requires-Dist: pytest-asyncio>=0.26.0; extra == 'dev'
|
|
33
|
+
Requires-Dist: pytest-cov>=4.1.0; extra == 'dev'
|
|
34
|
+
Requires-Dist: pytest-mock>=3.12.0; extra == 'dev'
|
|
35
|
+
Requires-Dist: pytest>=8.0.0; extra == 'dev'
|
|
36
|
+
Requires-Dist: ruff>=0.9.7; extra == 'dev'
|
|
37
|
+
Description-Content-Type: text/markdown
|
|
38
|
+
|
|
39
|
+
# AWS ElastiCache MCP Server
|
|
40
|
+
|
|
41
|
+
The official MCP Server for interacting with AWS ElastiCache
|
|
42
|
+
|
|
43
|
+
## Available MCP Tools
|
|
44
|
+
|
|
45
|
+
### Replication Group Operations
|
|
46
|
+
- `create-replication-group` - Create an Amazon ElastiCache replication group with specified configuration
|
|
47
|
+
- `delete-replication-group` - Delete an ElastiCache replication group with optional final snapshot
|
|
48
|
+
- `describe-replication-groups` - Get detailed information about one or more replication groups
|
|
49
|
+
- `modify-replication-group` - Modify settings of an existing replication group
|
|
50
|
+
- `modify-replication-group-shard-configuration` - Modify the shard configuration of a replication group
|
|
51
|
+
- `test-migration` - Test migration from a Redis instance to an ElastiCache replication group
|
|
52
|
+
- `start-migration` - Start migration from a Redis instance to an ElastiCache replication group
|
|
53
|
+
- `complete-migration` - Complete migration from a Redis instance to an ElastiCache replication group
|
|
54
|
+
- `connect-jump-host-replication-group` - Configure an EC2 instance as a jump host for replication group access
|
|
55
|
+
- `create-jump-host-replication-group` - Create an EC2 jump host to access a replication group via SSH tunnel
|
|
56
|
+
- `get-ssh-tunnel-command-replication-group` - Generate SSH tunnel command for replication group access
|
|
57
|
+
|
|
58
|
+
### Cache Cluster Operations
|
|
59
|
+
- `create-cache-cluster` - Create a new ElastiCache cache cluster
|
|
60
|
+
- `delete-cache-cluster` - Delete a cache cluster with optional final snapshot
|
|
61
|
+
- `describe-cache-clusters` - Get detailed information about one or more cache clusters
|
|
62
|
+
- `modify-cache-cluster` - Modify settings of an existing cache cluster
|
|
63
|
+
- `connect-jump-host-cache-cluster` - Configure an EC2 instance as a jump host for cluster access
|
|
64
|
+
- `create-jump-host-cache-cluster` - Create an EC2 jump host to access a cluster via SSH tunnel
|
|
65
|
+
- `get-ssh-tunnel-command-cache-cluster` - Generate SSH tunnel command for cluster access
|
|
66
|
+
|
|
67
|
+
### Serverless Cache Operations
|
|
68
|
+
- `create-serverless-cache` - Create a new ElastiCache serverless cache
|
|
69
|
+
- `delete-serverless-cache` - Delete a serverless cache
|
|
70
|
+
- `describe-serverless-caches` - Get information about serverless caches
|
|
71
|
+
- `modify-serverless-cache` - Modify settings of a serverless cache
|
|
72
|
+
- `connect-jump-host-serverless-cache` - Configure an EC2 instance as a jump host for serverless cache access
|
|
73
|
+
- `create-jump-host-serverless-cache` - Create an EC2 jump host to access a serverless cache via SSH tunnel
|
|
74
|
+
- `get-ssh-tunnel-command-serverless-cache` - Generate SSH tunnel command for serverless cache access
|
|
75
|
+
|
|
76
|
+
### CloudWatch Operations
|
|
77
|
+
- `get-metric-statistics` - Get CloudWatch metric statistics for ElastiCache resources with customizable time periods and dimensions
|
|
78
|
+
|
|
79
|
+
### CloudWatch Logs Operations
|
|
80
|
+
- `describe-log-groups` - List and describe CloudWatch Logs log groups
|
|
81
|
+
- `create-log-group` - Create a new CloudWatch Logs log group
|
|
82
|
+
- `describe-log-streams` - List and describe log streams in a log group
|
|
83
|
+
- `filter-log-events` - Search and filter log events across log streams
|
|
84
|
+
- `get-log-events` - Retrieve log events from a specific log stream
|
|
85
|
+
|
|
86
|
+
### Firehose Operations
|
|
87
|
+
- `list-delivery-streams` - List your Kinesis Data Firehose delivery streams
|
|
88
|
+
|
|
89
|
+
### Cost Explorer Operations
|
|
90
|
+
- `get-cost-and-usage` - Get cost and usage data for ElastiCache resources with customizable time periods and granularity
|
|
91
|
+
|
|
92
|
+
### Misc Operations
|
|
93
|
+
- `describe-cache-engine-versions` - List available cache engines and their versions
|
|
94
|
+
- `describe-engine-default-parameters` - Get default parameters for a cache engine family
|
|
95
|
+
- `describe-events` - Get events related to clusters, security groups, and parameters
|
|
96
|
+
- `describe-service-updates` - Get information about available service updates
|
|
97
|
+
- `batch-apply-update-action` - Apply service updates to resources
|
|
98
|
+
- `batch-stop-update-action` - Stop service updates on resources
|
|
99
|
+
|
|
100
|
+
## Instructions
|
|
101
|
+
|
|
102
|
+
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.
|
|
103
|
+
|
|
104
|
+
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.
|
|
105
|
+
|
|
106
|
+
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'.
|
|
107
|
+
|
|
108
|
+
## Prerequisites
|
|
109
|
+
|
|
110
|
+
1. Install `uv` from [Astral](https://docs.astral.sh/uv/getting-started/installation/) or the [GitHub README](https://github.com/astral-sh/uv#installation)
|
|
111
|
+
2. Install Python using `uv python install 3.10`
|
|
112
|
+
3. Set up AWS credentials with access to AWS services
|
|
113
|
+
- Consider setting up Read-only permission if you don't want the LLM to modify any resources
|
|
114
|
+
|
|
115
|
+
## Installation
|
|
116
|
+
|
|
117
|
+
Add the MCP to your favorite agentic tools. e.g. for Amazon Q Developer CLI MCP, `~/.aws/amazonq/mcp.json`):
|
|
118
|
+
|
|
119
|
+
```json
|
|
120
|
+
{
|
|
121
|
+
"mcpServers": {
|
|
122
|
+
"awslabs.elasticache-mcp-server": {
|
|
123
|
+
"command": "uvx",
|
|
124
|
+
"args": ["awslabs.elasticache-mcp-server@latest"],
|
|
125
|
+
"env": {
|
|
126
|
+
"AWS_PROFILE": "default",
|
|
127
|
+
"AWS_REGION": "us-west-2",
|
|
128
|
+
"FASTMCP_LOG_LEVEL": "ERROR"
|
|
129
|
+
},
|
|
130
|
+
"disabled": false,
|
|
131
|
+
"autoApprove": []
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
```
|
|
136
|
+
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:
|
|
137
|
+
|
|
138
|
+
```json
|
|
139
|
+
{
|
|
140
|
+
"mcpServers": {
|
|
141
|
+
"awslabs.elasticache-mcp-server": {
|
|
142
|
+
"command": "uvx",
|
|
143
|
+
"args": [
|
|
144
|
+
"awslabs.elasticache-mcp-server@latest",
|
|
145
|
+
"--readonly"
|
|
146
|
+
],
|
|
147
|
+
"env": {
|
|
148
|
+
"AWS_PROFILE": "default",
|
|
149
|
+
"AWS_REGION": "us-west-2",
|
|
150
|
+
"FASTMCP_LOG_LEVEL": "ERROR"
|
|
151
|
+
},
|
|
152
|
+
"disabled": false,
|
|
153
|
+
"autoApprove": []
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
or docker after a successful `docker build -t awslabs/elasticache-mcp-server .`:
|
|
160
|
+
|
|
161
|
+
```json
|
|
162
|
+
{
|
|
163
|
+
"mcpServers": {
|
|
164
|
+
"awslabs.elasticache-mcp-server": {
|
|
165
|
+
"command": "docker",
|
|
166
|
+
"args": [
|
|
167
|
+
"run",
|
|
168
|
+
"--rm",
|
|
169
|
+
"--interactive",
|
|
170
|
+
"--env",
|
|
171
|
+
"FASTMCP_LOG_LEVEL=ERROR",
|
|
172
|
+
"awslabs/elasticache-mcp-server:latest",
|
|
173
|
+
"--readonly" // Optional paramter if you would like to restrict the MCP to only read actions
|
|
174
|
+
],
|
|
175
|
+
"env": {},
|
|
176
|
+
"disabled": false,
|
|
177
|
+
"autoApprove": []
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
## Configuration
|
|
184
|
+
|
|
185
|
+
### AWS Configuration
|
|
186
|
+
|
|
187
|
+
Configure AWS credentials and region:
|
|
188
|
+
|
|
189
|
+
```bash
|
|
190
|
+
# AWS settings
|
|
191
|
+
AWS_PROFILE=default # AWS credential profile to use
|
|
192
|
+
AWS_REGION=us-east-1 # AWS region to connect to
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
### Connection Settings
|
|
196
|
+
|
|
197
|
+
Configure connection behavior and timeouts:
|
|
198
|
+
|
|
199
|
+
```bash
|
|
200
|
+
# Connection settings
|
|
201
|
+
ELASTICACHE_MAX_RETRIES=3 # Maximum number of retry attempts for AWS API calls
|
|
202
|
+
ELASTICACHE_RETRY_MODE=standard # AWS SDK retry mode for API calls
|
|
203
|
+
ELASTICACHE_CONNECT_TIMEOUT=5 # Connection timeout in seconds
|
|
204
|
+
ELASTICACHE_READ_TIMEOUT=10 # Read timeout in seconds
|
|
205
|
+
|
|
206
|
+
# Cost Explorer settings
|
|
207
|
+
COST_EXPLORER_MAX_RETRIES=3 # Maximum number of retry attempts for Cost Explorer API calls
|
|
208
|
+
COST_EXPLORER_RETRY_MODE=standard # AWS SDK retry mode for Cost Explorer API calls
|
|
209
|
+
COST_EXPLORER_CONNECT_TIMEOUT=5 # Connection timeout in seconds for Cost Explorer
|
|
210
|
+
COST_EXPLORER_READ_TIMEOUT=10 # Read timeout in seconds for Cost Explorer
|
|
211
|
+
|
|
212
|
+
# CloudWatch settings
|
|
213
|
+
CLOUDWATCH_MAX_RETRIES=3 # Maximum number of retry attempts for CloudWatch API calls
|
|
214
|
+
CLOUDWATCH_RETRY_MODE=standard # AWS SDK retry mode for CloudWatch API calls
|
|
215
|
+
CLOUDWATCH_CONNECT_TIMEOUT=5 # Connection timeout in seconds for CloudWatch
|
|
216
|
+
CLOUDWATCH_READ_TIMEOUT=10 # Read timeout in seconds for CloudWatch
|
|
217
|
+
|
|
218
|
+
# CloudWatch Logs settings
|
|
219
|
+
CLOUDWATCH_LOGS_MAX_RETRIES=3 # Maximum number of retry attempts for CloudWatch Logs API calls
|
|
220
|
+
CLOUDWATCH_LOGS_RETRY_MODE=standard # AWS SDK retry mode for CloudWatch Logs API calls
|
|
221
|
+
CLOUDWATCH_LOGS_CONNECT_TIMEOUT=5 # Connection timeout in seconds for CloudWatch Logs
|
|
222
|
+
CLOUDWATCH_LOGS_READ_TIMEOUT=10 # Read timeout in seconds for CloudWatch Logs
|
|
223
|
+
|
|
224
|
+
# Firehose settings
|
|
225
|
+
FIREHOSE_MAX_RETRIES=3 # Maximum number of retry attempts for Firehose API calls
|
|
226
|
+
FIREHOSE_RETRY_MODE=standard # AWS SDK retry mode for Firehose API calls
|
|
227
|
+
FIREHOSE_CONNECT_TIMEOUT=5 # Connection timeout in seconds for Firehose
|
|
228
|
+
FIREHOSE_READ_TIMEOUT=10 # Read timeout in seconds for Firehose
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
The server automatically handles:
|
|
232
|
+
- AWS authentication and credential management
|
|
233
|
+
- Connection establishment and management
|
|
234
|
+
- Automatic retrying of failed operations
|
|
235
|
+
- Timeout enforcement and error handling
|
|
236
|
+
|
|
237
|
+
## Development
|
|
238
|
+
|
|
239
|
+
### Running Tests
|
|
240
|
+
```bash
|
|
241
|
+
uv venv
|
|
242
|
+
source .venv/bin/activate
|
|
243
|
+
uv sync
|
|
244
|
+
uv run --frozen pytest
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
### Building Docker Image
|
|
248
|
+
```bash
|
|
249
|
+
docker build -t awslabs/elasticache-mcp-server .
|
|
250
|
+
```
|
|
251
|
+
|
|
252
|
+
### Running Docker Container
|
|
253
|
+
```bash
|
|
254
|
+
docker run -p 8080:8080 \
|
|
255
|
+
-e AWS_PROFILE=default \
|
|
256
|
+
-e AWS_REGION=us-west-2 \
|
|
257
|
+
awslabs/elasticache-mcp-server
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
awslabs/__init__.py,sha256=WuqxdDgUZylWNmVoPKiK7qGsTB_G4UmuXIrJ-VBwDew,731
|
|
2
|
+
awslabs/elasticache_mcp_server/__init__.py,sha256=zVl4Fh_cCZnPxkGjc8fIJetHYvZsFdhL_jpFgYjZEFI,676
|
|
3
|
+
awslabs/elasticache_mcp_server/context.py,sha256=r5-GpoLv_yZ4beQ8fmK2OwkYFIyusgOkKXJiDPoR-HE,1212
|
|
4
|
+
awslabs/elasticache_mcp_server/main.py,sha256=-B5He8PuBhvLxkBbHkRTujWyzhysD1LqPpAqTikMAVs,1614
|
|
5
|
+
awslabs/elasticache_mcp_server/common/__init__.py,sha256=xqowtDfO99eDDJLIqL4N6ss1ku9y4ZZWhTN7nh9zOV8,665
|
|
6
|
+
awslabs/elasticache_mcp_server/common/connection.py,sha256=d24j7jGLsRmnJoROb2K3XdqoCAPVKUkxI9-3LEm3yzs,4127
|
|
7
|
+
awslabs/elasticache_mcp_server/common/decorators.py,sha256=jIQQH3N9Ko604eb65ZwKnHjh8LceuMRmXfGT3Vu5t1s,1286
|
|
8
|
+
awslabs/elasticache_mcp_server/common/server.py,sha256=5W1gSo7_BWqbSiWRWZq2NkFy35rv8LhkPorjj0_7w9k,1131
|
|
9
|
+
awslabs/elasticache_mcp_server/tools/__init__.py,sha256=KSEbmf3L19fZWgATz6RIuYcnZaoGwjhAFAlu_eeb_78,664
|
|
10
|
+
awslabs/elasticache_mcp_server/tools/cc/__init__.py,sha256=5PAZpzh_4AU5EUf1xR8_Y3M4toKbhzOIaKJ57l8x-nA,1148
|
|
11
|
+
awslabs/elasticache_mcp_server/tools/cc/connect.py,sha256=cDHsvCdvfnGXRnCqKLFBHqqwF43BnB5Ct6BMoVHfSy4,17097
|
|
12
|
+
awslabs/elasticache_mcp_server/tools/cc/create.py,sha256=cZzqA1MyUvtrv11kqAzscNlqsuOeaUmqmbZlIdqyfW4,9943
|
|
13
|
+
awslabs/elasticache_mcp_server/tools/cc/delete.py,sha256=i6jecaSHJicrI8H3a4bFZtLJYIfeWWs6IkypCXKZLzg,2435
|
|
14
|
+
awslabs/elasticache_mcp_server/tools/cc/describe.py,sha256=3glRiRc5ebGeDKPlyMf7PTP1YnaOBMuGhwWkfscbJRA,3642
|
|
15
|
+
awslabs/elasticache_mcp_server/tools/cc/modify.py,sha256=hO8C0JQqlq4CH5gGF3KHk4EsqfJet_msb4oMvwlMYgk,7447
|
|
16
|
+
awslabs/elasticache_mcp_server/tools/cc/parsers.py,sha256=-LEfw7vsoOLcuU1_mdh2aRUS8Xa9VoZQ9bGg2J_7qOU,2848
|
|
17
|
+
awslabs/elasticache_mcp_server/tools/cc/processors.py,sha256=mJ0MTtxRgMcpLD2KGuFTV3OOInfURFNTs9vsbafqRTc,3073
|
|
18
|
+
awslabs/elasticache_mcp_server/tools/ce/__init__.py,sha256=nY1ui4V0U_cHm4qLsyBeDCRGQnhE36PEVon-n30meV0,806
|
|
19
|
+
awslabs/elasticache_mcp_server/tools/ce/get_cost_and_usage.py,sha256=2mEXSRFIYfZ6PpEbhmyN2qMVrH-epJfY6NeYeT4JkDQ,2923
|
|
20
|
+
awslabs/elasticache_mcp_server/tools/cw/__init__.py,sha256=WMqauaWifQk1YoSmaV1SpZqOyb30RT7mWvZMshYC97U,735
|
|
21
|
+
awslabs/elasticache_mcp_server/tools/cw/get_metric_statistics.py,sha256=XBnal3dTcdLcJZ8YR3LADj4yOj6VYTgwAie8I8MkrJk,2885
|
|
22
|
+
awslabs/elasticache_mcp_server/tools/cwlogs/__init__.py,sha256=5pcisxzfTCCbs6JWK7bmy1w9YD-oxHHTfIxVIKcCUFY,1034
|
|
23
|
+
awslabs/elasticache_mcp_server/tools/cwlogs/create_log_group.py,sha256=6LYK7K86vPyKBNy54WiPCiDKOxM38nWiEUtkMu-snWE,2407
|
|
24
|
+
awslabs/elasticache_mcp_server/tools/cwlogs/describe_log_groups.py,sha256=FMfMsIhzdD9As86TC7h5nBRfQ3GEFZVMaHts-icLDPU,4652
|
|
25
|
+
awslabs/elasticache_mcp_server/tools/cwlogs/describe_log_streams.py,sha256=1sbM6bc4cPt5eYWLrzDVmcRtIsNbRBcbnGRWZc4Qe-c,4396
|
|
26
|
+
awslabs/elasticache_mcp_server/tools/cwlogs/filter_log_events.py,sha256=XQjxABZ2vWG_IWFU66hVKo-aYjRUxNwbuZWh4ES92Eo,4455
|
|
27
|
+
awslabs/elasticache_mcp_server/tools/cwlogs/get_log_events.py,sha256=8oM19_O1i_8ks4j59-U0-11vHEFRxurM8onM7sjSNts,3467
|
|
28
|
+
awslabs/elasticache_mcp_server/tools/firehose/__init__.py,sha256=fXFk6ec9he2fRxWEBDNjffuslB_aWOkNeVlJR1qTi-Y,770
|
|
29
|
+
awslabs/elasticache_mcp_server/tools/firehose/list_delivery_streams.py,sha256=wjCWSDde7JXvSYJcsWWEGbDkJoABMsgGK4G98gFHKGs,2464
|
|
30
|
+
awslabs/elasticache_mcp_server/tools/misc/__init__.py,sha256=oSD6dbIW_Vx_ez2rZf37NsfLxr1OowDCqESgU8kVaVE,1265
|
|
31
|
+
awslabs/elasticache_mcp_server/tools/misc/batch_apply_update_action.py,sha256=wu5TVfSinQiseCtAv88w3dxkvZP2Gov7cCzDpUs2vlQ,2450
|
|
32
|
+
awslabs/elasticache_mcp_server/tools/misc/batch_stop_update_action.py,sha256=i26asPHJQqUnbeUC6UPg_bXkBjksUByKmdYtLl8DK3Q,2452
|
|
33
|
+
awslabs/elasticache_mcp_server/tools/misc/describe_cache_engine_versions.py,sha256=OjqWYEBhb0Qcq97gGYCvJnwjWvqZY8m2rjOowVfFqfA,3666
|
|
34
|
+
awslabs/elasticache_mcp_server/tools/misc/describe_engine_default_parameters.py,sha256=g5ZBvvPsuFgA2IcgeB6peDQuxAa4fY15Sy16adK7ARg,2955
|
|
35
|
+
awslabs/elasticache_mcp_server/tools/misc/describe_events.py,sha256=OFm8S0-Hnk-c8ZO3-H3vEymoKtXv9-Br8x48jCB8Q1A,3821
|
|
36
|
+
awslabs/elasticache_mcp_server/tools/misc/describe_service_updates.py,sha256=ppnPpSbChI7KOqk-M1PTQvoDRu4maIGmS7reNnJt9R4,2990
|
|
37
|
+
awslabs/elasticache_mcp_server/tools/rg/__init__.py,sha256=RyGA5z-CeuOjw8X3GeFwpW33WzzThoErmuJ0ddu-gC0,1983
|
|
38
|
+
awslabs/elasticache_mcp_server/tools/rg/complete_migration.py,sha256=yU1qSI5WRdKvrFp1rSPrtwd1fIrAJmfgoOodZixBzl8,3732
|
|
39
|
+
awslabs/elasticache_mcp_server/tools/rg/connect.py,sha256=ObxevDUOY95jsyVoLH_H2gx4PIZXzmg2w81wJ7hAfTA,20800
|
|
40
|
+
awslabs/elasticache_mcp_server/tools/rg/create.py,sha256=SUe8_vyvQ3emeCru1g9yp9ZxfHmk-ASNpu36DaBoSXU,13495
|
|
41
|
+
awslabs/elasticache_mcp_server/tools/rg/delete.py,sha256=PA-D8YK2ePs1aa6BRc7OYsrHNSbjGazwN9UP1fDnBDA,2747
|
|
42
|
+
awslabs/elasticache_mcp_server/tools/rg/describe.py,sha256=wt7tdYKe3VPkxgDj7MdcmNtXwxjRKprKxkwQPx9C1Fg,2984
|
|
43
|
+
awslabs/elasticache_mcp_server/tools/rg/modify.py,sha256=6LSG4GSUBbrTlMWhL53WZ0-tWpdTMXOUBSwUExTd69k,9798
|
|
44
|
+
awslabs/elasticache_mcp_server/tools/rg/parsers.py,sha256=1z7h_R10BRiO7R5elFJ3pTF_kJfwCGT9xr8UevloWjs,8620
|
|
45
|
+
awslabs/elasticache_mcp_server/tools/rg/processors.py,sha256=2DEsrF7ucCg7vKhXfoOM4EgBTlwgdWtzJXFFmERSYFk,8993
|
|
46
|
+
awslabs/elasticache_mcp_server/tools/rg/start_migration.py,sha256=bReeWPZbCoU7gKlmR8Nfy8VrweVThTrvp4KibK_fmp4,6042
|
|
47
|
+
awslabs/elasticache_mcp_server/tools/rg/test_migration.py,sha256=Ye05Lxf84tQShOOokm-agL9GDPFSZTrL31A1A7368EE,5597
|
|
48
|
+
awslabs/elasticache_mcp_server/tools/serverless/__init__.py,sha256=q_te85wY15COM7iFszg1SrY4ianS_BmQrvTEMYpxm3A,1306
|
|
49
|
+
awslabs/elasticache_mcp_server/tools/serverless/connect.py,sha256=PETjBHn2vhWIggyL2cvHhrbHFF5Z54tfd_4U0Cl0If8,17185
|
|
50
|
+
awslabs/elasticache_mcp_server/tools/serverless/create.py,sha256=zpihqFZWweifjSKpAr39CDn2Hp8mPK6l3pJr7WvXEl0,7513
|
|
51
|
+
awslabs/elasticache_mcp_server/tools/serverless/delete.py,sha256=Rc1JXZgDlkpArW217TSxdpZkyOZEW053iaWulp_ZWUk,1858
|
|
52
|
+
awslabs/elasticache_mcp_server/tools/serverless/describe.py,sha256=GwHuHfi4vltAxOv7hLvvsKiq7GoGF7LUcrt0uCi4mAM,2567
|
|
53
|
+
awslabs/elasticache_mcp_server/tools/serverless/models.py,sha256=hex1WG0HwDBbMFNbi7lpbAs0XaGJRzpIerHjpdG53MY,6678
|
|
54
|
+
awslabs/elasticache_mcp_server/tools/serverless/modify.py,sha256=OU6x5kNsNvKM1ylETPviBN_dv05LMPWW02zubo47mVE,3872
|
|
55
|
+
awslabs_elasticache_mcp_server-0.1.1.dist-info/METADATA,sha256=5M4kdQ43eDpFWk8rLrb2tUdtbUC_w4gqJhFfQILkVO8,10824
|
|
56
|
+
awslabs_elasticache_mcp_server-0.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
57
|
+
awslabs_elasticache_mcp_server-0.1.1.dist-info/entry_points.txt,sha256=058QYfdxCKFALC9V2L5AQz36-jBT8fV8HVLOuIVngAA,92
|
|
58
|
+
awslabs_elasticache_mcp_server-0.1.1.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
59
|
+
awslabs_elasticache_mcp_server-0.1.1.dist-info/licenses/NOTICE,sha256=89EDSSt20vYGgAdEzUiW5Y_VMpZ5CDd2RvXs8BDdhKk,98
|
|
60
|
+
awslabs_elasticache_mcp_server-0.1.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|