awslabs.memcached-mcp-server 1.0.1__tar.gz → 1.0.2__tar.gz
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-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/Dockerfile +3 -3
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/PKG-INFO +1 -1
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/pyproject.toml +1 -1
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/uv.lock +1 -1
- awslabs_memcached_mcp_server-1.0.1/.pre-commit-config.yaml +0 -14
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/.gitignore +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/.python-version +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/CHANGELOG.md +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/ELASTICACHECONNECT.md +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/LICENSE +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/NOTICE +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/README.md +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/awslabs/__init__.py +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/awslabs/memcached_mcp_server/__init__.py +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/awslabs/memcached_mcp_server/common/config.py +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/awslabs/memcached_mcp_server/common/connection.py +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/awslabs/memcached_mcp_server/common/server.py +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/awslabs/memcached_mcp_server/main.py +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/awslabs/memcached_mcp_server/tools/cache.py +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/docker-healthcheck.sh +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/tests/test_cache.py +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/tests/test_connection.py +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/tests/test_init.py +0 -0
- {awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/tests/test_main.py +0 -0
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
15
|
#FROM public.ecr.aws/sam/build-python3.10:1.137.1-20250411084548
|
|
16
|
-
FROM public.ecr.aws/sam/build-python3.10@sha256:
|
|
16
|
+
FROM public.ecr.aws/sam/build-python3.10@sha256:d821662474d65f3cf2fc97dba2fa807a3adb580d02895fc4545527812550ea65 AS uv
|
|
17
17
|
|
|
18
18
|
# Install the project into `/app`
|
|
19
19
|
WORKDIR /app
|
|
@@ -35,7 +35,7 @@ COPY pyproject.toml uv.lock ./
|
|
|
35
35
|
|
|
36
36
|
# Install the project's dependencies using the lockfile and settings
|
|
37
37
|
RUN --mount=type=cache,target=/root/.cache/uv \
|
|
38
|
-
pip install uv && \
|
|
38
|
+
pip install uv==0.7.11 && \
|
|
39
39
|
uv sync --frozen --no-install-project --no-dev --no-editable
|
|
40
40
|
|
|
41
41
|
# Then, add the rest of the project source code and install it
|
|
@@ -47,7 +47,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
|
|
|
47
47
|
# Make the directory just in case it doesn't exist
|
|
48
48
|
RUN mkdir -p /root/.local
|
|
49
49
|
|
|
50
|
-
FROM public.ecr.aws/sam/build-python3.10@sha256:
|
|
50
|
+
FROM public.ecr.aws/sam/build-python3.10@sha256:d821662474d65f3cf2fc97dba2fa807a3adb580d02895fc4545527812550ea65
|
|
51
51
|
|
|
52
52
|
# Place executables in the environment at the front of the path and include other binaries
|
|
53
53
|
ENV PATH="/app/.venv/bin:$PATH:/usr/sbin"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: awslabs.memcached-mcp-server
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.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/
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
repos:
|
|
2
|
-
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
3
|
-
rev: v0.9.6
|
|
4
|
-
hooks:
|
|
5
|
-
- id: ruff
|
|
6
|
-
args: [--fix]
|
|
7
|
-
- id: ruff-format
|
|
8
|
-
|
|
9
|
-
- repo: https://github.com/commitizen-tools/commitizen
|
|
10
|
-
rev: v3.13.0
|
|
11
|
-
hooks:
|
|
12
|
-
- id: commitizen
|
|
13
|
-
- id: commitizen-branch
|
|
14
|
-
stages: [push]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/ELASTICACHECONNECT.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/awslabs/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/docker-healthcheck.sh
RENAMED
|
File without changes
|
{awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/tests/test_cache.py
RENAMED
|
File without changes
|
{awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/tests/test_connection.py
RENAMED
|
File without changes
|
{awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/tests/test_init.py
RENAMED
|
File without changes
|
{awslabs_memcached_mcp_server-1.0.1 → awslabs_memcached_mcp_server-1.0.2}/tests/test_main.py
RENAMED
|
File without changes
|