awslabs.memcached-mcp-server 1.0.0__tar.gz → 1.0.1__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.
Files changed (29) hide show
  1. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/Dockerfile +9 -6
  2. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/PKG-INFO +1 -1
  3. awslabs_memcached_mcp_server-1.0.1/awslabs/__init__.py +16 -0
  4. awslabs_memcached_mcp_server-1.0.1/awslabs/memcached_mcp_server/__init__.py +17 -0
  5. awslabs_memcached_mcp_server-1.0.1/awslabs/memcached_mcp_server/common/config.py +21 -0
  6. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/awslabs/memcached_mcp_server/common/connection.py +14 -0
  7. awslabs_memcached_mcp_server-1.0.1/awslabs/memcached_mcp_server/common/server.py +28 -0
  8. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/awslabs/memcached_mcp_server/main.py +9 -6
  9. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/awslabs/memcached_mcp_server/tools/cache.py +14 -0
  10. awslabs_memcached_mcp_server-1.0.1/docker-healthcheck.sh +26 -0
  11. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/pyproject.toml +1 -1
  12. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/tests/test_init.py +9 -6
  13. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/tests/test_main.py +9 -6
  14. awslabs_memcached_mcp_server-1.0.0/awslabs/__init__.py +0 -13
  15. awslabs_memcached_mcp_server-1.0.0/awslabs/memcached_mcp_server/__init__.py +0 -14
  16. awslabs_memcached_mcp_server-1.0.0/awslabs/memcached_mcp_server/common/config.py +0 -7
  17. awslabs_memcached_mcp_server-1.0.0/awslabs/memcached_mcp_server/common/server.py +0 -14
  18. awslabs_memcached_mcp_server-1.0.0/docker-healthcheck.sh +0 -12
  19. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/.gitignore +0 -0
  20. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/.pre-commit-config.yaml +0 -0
  21. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/.python-version +0 -0
  22. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/CHANGELOG.md +0 -0
  23. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/ELASTICACHECONNECT.md +0 -0
  24. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/LICENSE +0 -0
  25. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/NOTICE +0 -0
  26. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/README.md +0 -0
  27. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/tests/test_cache.py +0 -0
  28. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/tests/test_connection.py +0 -0
  29. {awslabs_memcached_mcp_server-1.0.0 → awslabs_memcached_mcp_server-1.0.1}/uv.lock +0 -0
@@ -1,13 +1,16 @@
1
1
  # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
  #
3
- # Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
4
- # with the License. A copy of the License is located at
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
5
6
  #
6
- # http://www.apache.org/licenses/LICENSE-2.0
7
+ # http://www.apache.org/licenses/LICENSE-2.0
7
8
  #
8
- # or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES
9
- # OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions
10
- # and limitations under the License.
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
11
14
 
12
15
  #FROM public.ecr.aws/sam/build-python3.10:1.137.1-20250411084548
13
16
  FROM public.ecr.aws/sam/build-python3.10@sha256:e78695db10ca8cb129e59e30f7dc9789b0dbd0181dba195d68419c72bac51ac1 AS uv
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: awslabs.memcached-mcp-server
3
- Version: 1.0.0
3
+ Version: 1.0.1
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/
@@ -0,0 +1,16 @@
1
+ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ # This file is part of the awslabs namespace.
16
+ # It is intentionally minimal to support PEP 420 namespace packages.
@@ -0,0 +1,17 @@
1
+ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ """awslabs.memcached-mcp-server"""
16
+
17
+ __version__ = '0.1.0'
@@ -0,0 +1,21 @@
1
+ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ """Configuration for Memcached MCP Server."""
16
+
17
+ from dotenv import load_dotenv
18
+
19
+
20
+ # Load environment variables from .env file if present
21
+ load_dotenv()
@@ -1,3 +1,17 @@
1
+ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
1
15
  """Connection management for Memcached MCP Server."""
2
16
 
3
17
  import os
@@ -0,0 +1,28 @@
1
+ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ """Server initialization for Memcached MCP Server."""
16
+
17
+ from mcp.server.fastmcp import FastMCP
18
+
19
+
20
+ # Create MCP server instance
21
+ mcp = FastMCP(
22
+ 'awslabs.memcached-mcp-server',
23
+ instructions='Instructions for using this memcached MCP server. This can be used by clients to improve the LLM'
24
+ 's understanding of available tools, resources, etc. It can be thought of like a '
25
+ 'hint'
26
+ ' to the model. For example, this information MAY be added to the system prompt. Important to be clear, direct, and detailed.',
27
+ dependencies=['pydantic', 'loguru', 'pymemcache', 'dotenv'],
28
+ )
@@ -1,13 +1,16 @@
1
1
  # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
  #
3
- # Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
4
- # with the License. A copy of the License is located at
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
5
6
  #
6
- # http://www.apache.org/licenses/LICENSE-2.0
7
+ # http://www.apache.org/licenses/LICENSE-2.0
7
8
  #
8
- # or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES
9
- # OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions
10
- # and limitations under the License.
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
11
14
 
12
15
  """awslabs memcached MCP Server implementation."""
13
16
 
@@ -1,3 +1,17 @@
1
+ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
1
15
  """Cache operations for Memcached MCP Server."""
2
16
 
3
17
  from awslabs.memcached_mcp_server.common.connection import MemcachedConnectionManager
@@ -0,0 +1,26 @@
1
+ #!/bin/sh
2
+
3
+ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ if [ "$(lsof +c 0 -p 1 | grep -e grep -e "^awslabs\..*\s1\s.*\unix\s.*socket$" | wc -l)" -ne "0" ]; then
18
+ echo -n "$(lsof +c 0 -p 1 | grep -e grep -e "^awslabs\..*\s1\s.*\unix\s.*socket$" | wc -l) awslabs.* streams found";
19
+ exit 0;
20
+ else
21
+ echo -n "Zero awslabs.* streams found";
22
+ exit 1;
23
+ fi;
24
+
25
+ echo -n "Never should reach here";
26
+ exit 99;
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "awslabs.memcached-mcp-server"
3
- version = "1.0.0"
3
+ version = "1.0.1"
4
4
  description = "An AWS Labs Model Context Protocol (MCP) server for Amazon ElastiCache Memcached"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -1,13 +1,16 @@
1
1
  # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
  #
3
- # Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
4
- # with the License. A copy of the License is located at
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
5
6
  #
6
- # http://www.apache.org/licenses/LICENSE-2.0
7
+ # http://www.apache.org/licenses/LICENSE-2.0
7
8
  #
8
- # or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES
9
- # OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions
10
- # and limitations under the License.
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
11
14
  """Tests for the awslabs.memcached-mcp-server package."""
12
15
 
13
16
  import importlib
@@ -1,13 +1,16 @@
1
1
  # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
  #
3
- # Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
4
- # with the License. A copy of the License is located at
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
5
6
  #
6
- # http://www.apache.org/licenses/LICENSE-2.0
7
+ # http://www.apache.org/licenses/LICENSE-2.0
7
8
  #
8
- # or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES
9
- # OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions
10
- # and limitations under the License.
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
11
14
  """Tests for the main function in server.py."""
12
15
 
13
16
  from awslabs.memcached_mcp_server.main import main
@@ -1,13 +0,0 @@
1
- # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
4
- # with the License. A copy of the License is located at
5
- #
6
- # http://www.apache.org/licenses/LICENSE-2.0
7
- #
8
- # or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES
9
- # OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions
10
- # and limitations under the License.
11
-
12
- # This file is part of the awslabs namespace.
13
- # It is intentionally minimal to support PEP 420 namespace packages.
@@ -1,14 +0,0 @@
1
- # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
4
- # with the License. A copy of the License is located at
5
- #
6
- # http://www.apache.org/licenses/LICENSE-2.0
7
- #
8
- # or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES
9
- # OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions
10
- # and limitations under the License.
11
-
12
- """awslabs.memcached-mcp-server"""
13
-
14
- __version__ = '0.1.0'
@@ -1,7 +0,0 @@
1
- """Configuration for Memcached MCP Server."""
2
-
3
- from dotenv import load_dotenv
4
-
5
-
6
- # Load environment variables from .env file if present
7
- load_dotenv()
@@ -1,14 +0,0 @@
1
- """Server initialization for Memcached MCP Server."""
2
-
3
- from mcp.server.fastmcp import FastMCP
4
-
5
-
6
- # Create MCP server instance
7
- mcp = FastMCP(
8
- 'awslabs.memcached-mcp-server',
9
- instructions='Instructions for using this memcached MCP server. This can be used by clients to improve the LLM'
10
- 's understanding of available tools, resources, etc. It can be thought of like a '
11
- 'hint'
12
- ' to the model. For example, this information MAY be added to the system prompt. Important to be clear, direct, and detailed.',
13
- dependencies=['pydantic', 'loguru', 'pymemcache', 'dotenv'],
14
- )
@@ -1,12 +0,0 @@
1
- #!/bin/sh
2
-
3
- if [ "$(lsof +c 0 -p 1 | grep -e grep -e "^awslabs\..*\s1\s.*\unix\s.*socket$" | wc -l)" -ne "0" ]; then
4
- echo -n "$(lsof +c 0 -p 1 | grep -e grep -e "^awslabs\..*\s1\s.*\unix\s.*socket$" | wc -l) awslabs.* streams found";
5
- exit 0;
6
- else
7
- echo -n "Zero awslabs.* streams found";
8
- exit 1;
9
- fi;
10
-
11
- echo -n "Never should reach here";
12
- exit 99;