awslabs.valkey-mcp-server 1.0.0__py3-none-any.whl → 1.0.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.
Files changed (27) hide show
  1. awslabs/__init__.py +9 -6
  2. awslabs/valkey_mcp_server/__init__.py +9 -6
  3. awslabs/valkey_mcp_server/common/__init__.py +9 -6
  4. awslabs/valkey_mcp_server/common/config.py +9 -6
  5. awslabs/valkey_mcp_server/common/connection.py +9 -6
  6. awslabs/valkey_mcp_server/common/server.py +9 -6
  7. awslabs/valkey_mcp_server/main.py +9 -6
  8. awslabs/valkey_mcp_server/tools/__init__.py +9 -6
  9. awslabs/valkey_mcp_server/tools/bitmap.py +9 -6
  10. awslabs/valkey_mcp_server/tools/hash.py +9 -6
  11. awslabs/valkey_mcp_server/tools/hyperloglog.py +9 -6
  12. awslabs/valkey_mcp_server/tools/json.py +9 -6
  13. awslabs/valkey_mcp_server/tools/list.py +9 -6
  14. awslabs/valkey_mcp_server/tools/misc.py +9 -6
  15. awslabs/valkey_mcp_server/tools/server_management.py +9 -6
  16. awslabs/valkey_mcp_server/tools/set.py +9 -6
  17. awslabs/valkey_mcp_server/tools/sorted_set.py +9 -6
  18. awslabs/valkey_mcp_server/tools/stream.py +9 -6
  19. awslabs/valkey_mcp_server/tools/string.py +9 -6
  20. awslabs/valkey_mcp_server/version.py +9 -6
  21. {awslabs_valkey_mcp_server-1.0.0.dist-info → awslabs_valkey_mcp_server-1.0.1.dist-info}/METADATA +1 -1
  22. awslabs_valkey_mcp_server-1.0.1.dist-info/RECORD +26 -0
  23. awslabs_valkey_mcp_server-1.0.0.dist-info/RECORD +0 -26
  24. {awslabs_valkey_mcp_server-1.0.0.dist-info → awslabs_valkey_mcp_server-1.0.1.dist-info}/WHEEL +0 -0
  25. {awslabs_valkey_mcp_server-1.0.0.dist-info → awslabs_valkey_mcp_server-1.0.1.dist-info}/entry_points.txt +0 -0
  26. {awslabs_valkey_mcp_server-1.0.0.dist-info → awslabs_valkey_mcp_server-1.0.1.dist-info}/licenses/LICENSE +0 -0
  27. {awslabs_valkey_mcp_server-1.0.0.dist-info → awslabs_valkey_mcp_server-1.0.1.dist-info}/licenses/NOTICE +0 -0
awslabs/__init__.py CHANGED
@@ -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
  # This file is part of the awslabs namespace.
13
16
  # It is intentionally minimal to support PEP 420 namespace packages.
@@ -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
  """Valkey MCP server package."""
13
16
 
@@ -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
  """
13
16
  Common imports.
@@ -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
  import os
13
16
  import urllib.parse
@@ -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
  import sys
13
16
  from awslabs.valkey_mcp_server.common.config import VALKEY_CFG
@@ -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 mcp.server.fastmcp import FastMCP
13
16
 
@@ -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 valkey MCP Server implementation."""
13
16
 
@@ -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
  """
13
16
  Tool imports for Valkey MCP Server.
@@ -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
  """Bitmap operations for Valkey MCP Server."""
13
16
 
@@ -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
  """Hash operations for Valkey MCP Server."""
13
16
 
@@ -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
  """HyperLogLog operations for Valkey MCP Server."""
13
16
 
@@ -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
  """JSON operations for Valkey MCP Server."""
13
16
 
@@ -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
  """List operations for Valkey MCP Server."""
13
16
 
@@ -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 awslabs.valkey_mcp_server.common.connection import ValkeyConnectionManager
13
16
  from awslabs.valkey_mcp_server.common.server import mcp
@@ -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 awslabs.valkey_mcp_server.common.connection import ValkeyConnectionManager
13
16
  from awslabs.valkey_mcp_server.common.server import mcp
@@ -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
  """Set operations for Valkey MCP Server."""
13
16
 
@@ -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
  """Sorted Set operations for Valkey MCP Server."""
13
16
 
@@ -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
  """Stream operations for Valkey MCP Server."""
13
16
 
@@ -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
  """String operations for Valkey MCP Server."""
13
16
 
@@ -1,12 +1,15 @@
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
  __version__ = '0.1.0'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: awslabs.valkey-mcp-server
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: An AWS Labs Model Context Protocol (MCP) server for valkey
5
5
  Project-URL: homepage, https://awslabs.github.io/mcp/
6
6
  Project-URL: docs, https://awslabs.github.io/mcp/servers/valkey-mcp-server/
@@ -0,0 +1,26 @@
1
+ awslabs/__init__.py,sha256=WuqxdDgUZylWNmVoPKiK7qGsTB_G4UmuXIrJ-VBwDew,731
2
+ awslabs/valkey_mcp_server/__init__.py,sha256=C2RgjQfy3kYBZ2NokGTW308ldYQNXPJOmcifIoSqxqY,672
3
+ awslabs/valkey_mcp_server/main.py,sha256=lXPGVljjwMTDWuaJoP3cUij1rebdQE73v7s8cgn3R1s,1987
4
+ awslabs/valkey_mcp_server/version.py,sha256=8161BBQQZut_MCnIZdhSJ3B_abfx8cwaKu90EaS__Dw,638
5
+ awslabs/valkey_mcp_server/common/__init__.py,sha256=-c4-Il6p3y3Ds9yZv58p1CHT_p8yO9a6n4wzHEVAFG4,699
6
+ awslabs/valkey_mcp_server/common/config.py,sha256=swcXMANStSJRZGuuHFLFMJckccH88c7HEg2QruzX-Pg,3154
7
+ awslabs/valkey_mcp_server/common/connection.py,sha256=twCbzkIWoc9BCx8TIViJ6m-c9eRNv5tCIQmntd6crOk,4044
8
+ awslabs/valkey_mcp_server/common/server.py,sha256=3cGdifWvtk93fenC_IJ4KD0sBfPr0myPURp6igRK0pQ,1148
9
+ awslabs/valkey_mcp_server/tools/__init__.py,sha256=yAdR7sNlUZwYaqOBba_KLN7qdxsO29PglZnSKsXpsTw,820
10
+ awslabs/valkey_mcp_server/tools/bitmap.py,sha256=v2bnWfbnoVaEaN6j6Nmdz0eWapnLhVbYq_wteOjQub8,5035
11
+ awslabs/valkey_mcp_server/tools/hash.py,sha256=9fMUnXDXovukFpVVYkCCetEhyaBfotymuNmrAmpEbZo,8035
12
+ awslabs/valkey_mcp_server/tools/hyperloglog.py,sha256=rs5PrS6xQHiuuG5mc1pwJSrSj8ECv-X5MjrTNzVEqds,1988
13
+ awslabs/valkey_mcp_server/tools/json.py,sha256=yWr3UgHR1xTrkLTr77JbePQQdHlenMVyf1sRcOVKt00,13846
14
+ awslabs/valkey_mcp_server/tools/list.py,sha256=zFxEm3f6X_3skLUAtQNzmQ1_Yk3NXlfpVHk0R_nzPfw,11341
15
+ awslabs/valkey_mcp_server/tools/misc.py,sha256=QglRL6SBgUMudMlKQ3HovG2EUgYaQb6W7uH63djTFQA,3372
16
+ awslabs/valkey_mcp_server/tools/server_management.py,sha256=wL_q_eADfvN6F8VrU5pwXvyVdCL4WFZ4PICm2PDPq14,1955
17
+ awslabs/valkey_mcp_server/tools/set.py,sha256=aSzb4mzNCgm35UTUE3u1dMOr4_IfQSHZrnnRias72og,5229
18
+ awslabs/valkey_mcp_server/tools/sorted_set.py,sha256=ZTwaKwopJVAL8nSN6a8nHs82gnw-e-ynDhwInSXLVlg,11353
19
+ awslabs/valkey_mcp_server/tools/stream.py,sha256=YdwDsqKRKExdxY_wlXFP-6R_YMYww8Qxf7D2zpeo1_0,10455
20
+ awslabs/valkey_mcp_server/tools/string.py,sha256=ip04esz_3VriS5h2J8yCqz_SdpnGxSwEbaqwqVe6fe4,6427
21
+ awslabs_valkey_mcp_server-1.0.1.dist-info/METADATA,sha256=ZOwkuuYiRgYDpl58XTp0h9duK0cwQy9oKMwUwXvvc0g,5661
22
+ awslabs_valkey_mcp_server-1.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
23
+ awslabs_valkey_mcp_server-1.0.1.dist-info/entry_points.txt,sha256=pOqhzh9mlelNc6dLngnCQS1bs62Wazi0Y8EqQmXolK0,82
24
+ awslabs_valkey_mcp_server-1.0.1.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
25
+ awslabs_valkey_mcp_server-1.0.1.dist-info/licenses/NOTICE,sha256=02_lxJlcwNuKRYtdONbI4i4RBK09-SqoQCzkqjpbqhY,93
26
+ awslabs_valkey_mcp_server-1.0.1.dist-info/RECORD,,
@@ -1,26 +0,0 @@
1
- awslabs/__init__.py,sha256=47wJeKcStxEJwX7SVVV2pnAWYR8FxcaYoT3YTmZ5Plg,674
2
- awslabs/valkey_mcp_server/__init__.py,sha256=1uaudyvb6TmTclJsY_E83V9sZaENdgvqWvICE8nOEQg,615
3
- awslabs/valkey_mcp_server/main.py,sha256=1_GYhWxCbIHLwHe2OxTK8ACpNpeNgr3RKh64axOG5-s,1930
4
- awslabs/valkey_mcp_server/version.py,sha256=_FL_Ypqg6_xMa_lG6BQMwEnr9nMtnbOzD3_MHsrlMso,581
5
- awslabs/valkey_mcp_server/common/__init__.py,sha256=8bc9Zk_3k5Vk1LertWr4DvUXgFcIIFYMChEtqILn8OE,642
6
- awslabs/valkey_mcp_server/common/config.py,sha256=Lohpasy7zHFYLhFjJwfD-OqjdePxLMthVLuMYu8XtUY,3097
7
- awslabs/valkey_mcp_server/common/connection.py,sha256=o-a-XqdSH6syVhHKOtoZoK9bDpQY9sCGeq6eyPxaKo8,3987
8
- awslabs/valkey_mcp_server/common/server.py,sha256=46wfrhyYn1O8YPTxVY0Xr0ZRwGO5wFXLcIHmaLGKTWE,1091
9
- awslabs/valkey_mcp_server/tools/__init__.py,sha256=YbrolcBqbWQR56LtwhAzt1jk4S-hhNz8w4K5HNKjdkk,763
10
- awslabs/valkey_mcp_server/tools/bitmap.py,sha256=aL7bJnuKEPs7Nf45NaJoIZfeThvBFZhp_KsfMHTJIZo,4978
11
- awslabs/valkey_mcp_server/tools/hash.py,sha256=MLE4l8_79RB6gIZ89oXJdILUmv-pWq2PANfFkK17LQA,7978
12
- awslabs/valkey_mcp_server/tools/hyperloglog.py,sha256=tkq4cerrNDG1r36YK1TcQr0_kcgAmcBF9eSXUHqdQWw,1931
13
- awslabs/valkey_mcp_server/tools/json.py,sha256=JlnU--1wxRjmnyzSyzVNa4gHflkACq72bv5EDHTkmXM,13789
14
- awslabs/valkey_mcp_server/tools/list.py,sha256=RsT1bAzJkLuH2fl0d9StyALosAoIa5d_Kg3I8whHS20,11284
15
- awslabs/valkey_mcp_server/tools/misc.py,sha256=upio6FQPcIsTo6rpjEz-yTIKp6Rdeg6Hsh7sCSEjsow,3315
16
- awslabs/valkey_mcp_server/tools/server_management.py,sha256=hEyN1dTgWOrpk7298XoQO0cZJryArq0N_bSzsP5saw4,1898
17
- awslabs/valkey_mcp_server/tools/set.py,sha256=ubN2eaID4HPWbF23-dSztHG6-2sEFWKWkqoxeu6T4aY,5172
18
- awslabs/valkey_mcp_server/tools/sorted_set.py,sha256=RhZT1wjdFeZxK7xuOBfiLPqDXTjqhtg96eetW9AGeRU,11296
19
- awslabs/valkey_mcp_server/tools/stream.py,sha256=YiSsYCHTbCer1O7hz2fF1R3ryDuiPbB1yadSH-rnmvE,10398
20
- awslabs/valkey_mcp_server/tools/string.py,sha256=EXJX8UqwvcjwIVVczSQQHenpN2SePZ0uK8XdFeyLbxo,6370
21
- awslabs_valkey_mcp_server-1.0.0.dist-info/METADATA,sha256=bnx8jXyLa9l7GU_x_d7g4r6xldHpCy2xqodGG_v1tH4,5661
22
- awslabs_valkey_mcp_server-1.0.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
23
- awslabs_valkey_mcp_server-1.0.0.dist-info/entry_points.txt,sha256=pOqhzh9mlelNc6dLngnCQS1bs62Wazi0Y8EqQmXolK0,82
24
- awslabs_valkey_mcp_server-1.0.0.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
25
- awslabs_valkey_mcp_server-1.0.0.dist-info/licenses/NOTICE,sha256=02_lxJlcwNuKRYtdONbI4i4RBK09-SqoQCzkqjpbqhY,93
26
- awslabs_valkey_mcp_server-1.0.0.dist-info/RECORD,,