awslabs.memcached-mcp-server 0.1.1__py3-none-any.whl → 0.1.2__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_memcached_mcp_server-0.1.1.dist-info → awslabs_memcached_mcp_server-0.1.2.dist-info}/METADATA +28 -19
- {awslabs_memcached_mcp_server-0.1.1.dist-info → awslabs_memcached_mcp_server-0.1.2.dist-info}/RECORD +6 -6
- awslabs_memcached_mcp_server-0.1.2.dist-info/entry_points.txt +2 -0
- awslabs_memcached_mcp_server-0.1.1.dist-info/entry_points.txt +0 -2
- {awslabs_memcached_mcp_server-0.1.1.dist-info → awslabs_memcached_mcp_server-0.1.2.dist-info}/WHEEL +0 -0
- {awslabs_memcached_mcp_server-0.1.1.dist-info → awslabs_memcached_mcp_server-0.1.2.dist-info}/licenses/LICENSE +0 -0
- {awslabs_memcached_mcp_server-0.1.1.dist-info → awslabs_memcached_mcp_server-0.1.2.dist-info}/licenses/NOTICE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: awslabs.memcached-mcp-server
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: An AWS Labs Model Context Protocol (MCP) server for Amazon ElastiCache Memcached
|
|
5
5
|
Project-URL: homepage, https://awslabs.github.io/mcp/
|
|
6
6
|
Project-URL: docs, https://awslabs.github.io/mcp/servers/memcached-mcp-server/
|
|
@@ -28,7 +28,7 @@ Requires-Dist: pymemcache>=4.0.0
|
|
|
28
28
|
Requires-Dist: python-dotenv>=0.9.9
|
|
29
29
|
Description-Content-Type: text/markdown
|
|
30
30
|
|
|
31
|
-
# Memcached MCP Server
|
|
31
|
+
# Amazon ElastiCache Memcached MCP Server
|
|
32
32
|
|
|
33
33
|
MCP server for interacting with Amazon ElastiCache Memcached through a secure and reliable connection
|
|
34
34
|
|
|
@@ -41,27 +41,13 @@ MCP server for interacting with Amazon ElastiCache Memcached through a secure an
|
|
|
41
41
|
- Automatic connection management and pooling
|
|
42
42
|
- Built-in retry mechanism for failed operations
|
|
43
43
|
|
|
44
|
-
### Robust Connection Management
|
|
45
|
-
|
|
46
|
-
- Configurable connection settings and timeouts
|
|
47
|
-
- Automatic connection retrying with customizable parameters
|
|
48
|
-
- Connection pooling for improved performance
|
|
49
|
-
- Comprehensive error handling and recovery
|
|
50
|
-
|
|
51
|
-
### Security and Reliability
|
|
52
|
-
|
|
53
|
-
- SSL/TLS support for encrypted communication
|
|
54
|
-
- Certificate-based authentication
|
|
55
|
-
- Configurable verification settings
|
|
56
|
-
- Automatic handling of connection failures
|
|
57
|
-
|
|
58
44
|
## Prerequisites
|
|
59
45
|
|
|
60
46
|
1. Install `uv` from [Astral](https://docs.astral.sh/uv/getting-started/installation/) or the [GitHub README](https://github.com/astral-sh/uv#installation)
|
|
61
47
|
2. Install Python using `uv python install 3.10`
|
|
62
|
-
3. Access to a Memcached server
|
|
63
|
-
|
|
64
|
-
|
|
48
|
+
3. Access to a Memcached server.
|
|
49
|
+
4. For instructions to connect to an Amazon ElastiCache Memcached cache [click here](https://github.com/awslabs/mcp/blob/main/src/memcached-mcp-server/ELASTICACHECONNECT.md)
|
|
50
|
+
|
|
65
51
|
|
|
66
52
|
## Installation
|
|
67
53
|
|
|
@@ -146,3 +132,26 @@ The server automatically handles:
|
|
|
146
132
|
- SSL/TLS encryption when enabled
|
|
147
133
|
- Automatic retrying of failed operations
|
|
148
134
|
- Timeout enforcement and error handling
|
|
135
|
+
|
|
136
|
+
## Development
|
|
137
|
+
|
|
138
|
+
### Running Tests
|
|
139
|
+
```bash
|
|
140
|
+
uv venv
|
|
141
|
+
source .venv/bin/activate
|
|
142
|
+
uv sync
|
|
143
|
+
uv run --frozen pytest
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
### Building Docker Image
|
|
147
|
+
```bash
|
|
148
|
+
docker build -t awslabs/memcached-mcp-server .
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
### Running Docker Container
|
|
152
|
+
```bash
|
|
153
|
+
docker run -p 8080:8080 \
|
|
154
|
+
-e MEMCACHED_HOST=host.docker.internal \
|
|
155
|
+
-e MEMCACHED_PORT=11211 \
|
|
156
|
+
awslabs/memcached-mcp-server
|
|
157
|
+
```
|
{awslabs_memcached_mcp_server-0.1.1.dist-info → awslabs_memcached_mcp_server-0.1.2.dist-info}/RECORD
RENAMED
|
@@ -5,9 +5,9 @@ awslabs/memcached_mcp_server/common/config.py,sha256=8onPAqIuxVqMg-8Sq2IoKteGPFp
|
|
|
5
5
|
awslabs/memcached_mcp_server/common/connection.py,sha256=rTNQTVnojDooBVs5syLMbrhxOTcDcFApEzD1tlDE77Y,3088
|
|
6
6
|
awslabs/memcached_mcp_server/common/server.py,sha256=dAUIguTwnU6puNdh2S5QEhT9XuVnB6uMfoZXJ9vrDoQ,589
|
|
7
7
|
awslabs/memcached_mcp_server/tools/cache.py,sha256=gvpRMx68czsFDAC4XcVyoZqLa3kypuF50jEBxWujMA8,12155
|
|
8
|
-
awslabs_memcached_mcp_server-0.1.
|
|
9
|
-
awslabs_memcached_mcp_server-0.1.
|
|
10
|
-
awslabs_memcached_mcp_server-0.1.
|
|
11
|
-
awslabs_memcached_mcp_server-0.1.
|
|
12
|
-
awslabs_memcached_mcp_server-0.1.
|
|
13
|
-
awslabs_memcached_mcp_server-0.1.
|
|
8
|
+
awslabs_memcached_mcp_server-0.1.2.dist-info/METADATA,sha256=DYIWjVlTCmgSu-E_bQsmqPA0aiEhzIZALPX1uCe0_2I,4781
|
|
9
|
+
awslabs_memcached_mcp_server-0.1.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
10
|
+
awslabs_memcached_mcp_server-0.1.2.dist-info/entry_points.txt,sha256=L6eXQdXenEsLGoVjKoZCyrrEMfDfXrSqGn_i-jYmES8,88
|
|
11
|
+
awslabs_memcached_mcp_server-0.1.2.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
12
|
+
awslabs_memcached_mcp_server-0.1.2.dist-info/licenses/NOTICE,sha256=Wxt-EHT4RdVQIf79fYjNk-uwPDYiRwXxH_QNfGIG5Lg,96
|
|
13
|
+
awslabs_memcached_mcp_server-0.1.2.dist-info/RECORD,,
|
{awslabs_memcached_mcp_server-0.1.1.dist-info → awslabs_memcached_mcp_server-0.1.2.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|