awslabs.dynamodb-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.
Potentially problematic release.
This version of awslabs.dynamodb-mcp-server might be problematic. Click here for more details.
- awslabs/__init__.py +9 -6
- awslabs/dynamodb_mcp_server/__init__.py +9 -6
- awslabs/dynamodb_mcp_server/common.py +14 -0
- awslabs/dynamodb_mcp_server/server.py +14 -0
- {awslabs_dynamodb_mcp_server-1.0.0.dist-info → awslabs_dynamodb_mcp_server-1.0.1.dist-info}/METADATA +2 -2
- awslabs_dynamodb_mcp_server-1.0.1.dist-info/RECORD +10 -0
- awslabs_dynamodb_mcp_server-1.0.0.dist-info/RECORD +0 -10
- {awslabs_dynamodb_mcp_server-1.0.0.dist-info → awslabs_dynamodb_mcp_server-1.0.1.dist-info}/WHEEL +0 -0
- {awslabs_dynamodb_mcp_server-1.0.0.dist-info → awslabs_dynamodb_mcp_server-1.0.1.dist-info}/entry_points.txt +0 -0
- {awslabs_dynamodb_mcp_server-1.0.0.dist-info → awslabs_dynamodb_mcp_server-1.0.1.dist-info}/licenses/LICENSE +0 -0
- {awslabs_dynamodb_mcp_server-1.0.0.dist-info → awslabs_dynamodb_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")
|
|
4
|
-
#
|
|
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
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
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")
|
|
4
|
-
#
|
|
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
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
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.dynamodb-mcp-server"""
|
|
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
|
import os
|
|
2
16
|
from functools import wraps
|
|
3
17
|
from typing import Any, Callable, Dict, List, Literal, Optional
|
|
@@ -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
|
#!/usr/bin/env python3
|
|
2
16
|
|
|
3
17
|
import boto3
|
{awslabs_dynamodb_mcp_server-1.0.0.dist-info → awslabs_dynamodb_mcp_server-1.0.1.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: awslabs.dynamodb-mcp-server
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: The official MCP Server for interacting with AWS DynamoDB
|
|
5
5
|
Project-URL: homepage, https://awslabs.github.io/mcp/
|
|
6
6
|
Project-URL: docs, https://awslabs.github.io/mcp/servers/dynamodb-mcp-server/
|
|
@@ -116,7 +116,7 @@ Add the MCP to your favorite agentic tools. e.g. for Amazon Q Developer CLI MCP,
|
|
|
116
116
|
}
|
|
117
117
|
```
|
|
118
118
|
|
|
119
|
-
or docker after a
|
|
119
|
+
or docker after a successful `docker build -t awslabs/dynamodb-mcp-server .`:
|
|
120
120
|
|
|
121
121
|
```json
|
|
122
122
|
{
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
awslabs/__init__.py,sha256=WuqxdDgUZylWNmVoPKiK7qGsTB_G4UmuXIrJ-VBwDew,731
|
|
2
|
+
awslabs/dynamodb_mcp_server/__init__.py,sha256=fjepFDvi4XcDm6PyjZL6NcA7CqQF4lyficHovM3yrdk,673
|
|
3
|
+
awslabs/dynamodb_mcp_server/common.py,sha256=aj1uOGa63TQdM3r75Zht74y1OGgUblDEQ-0h1RZHfn0,11422
|
|
4
|
+
awslabs/dynamodb_mcp_server/server.py,sha256=3474SxBi3BZTsmxYqFRyDuwvyMxGAYNLcsZbJ0dYnSo,32923
|
|
5
|
+
awslabs_dynamodb_mcp_server-1.0.1.dist-info/METADATA,sha256=PI5L8asAR9NdbnYWEwBfEP3-dvBOkM8go_YuKLZtvJA,5893
|
|
6
|
+
awslabs_dynamodb_mcp_server-1.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
7
|
+
awslabs_dynamodb_mcp_server-1.0.1.dist-info/entry_points.txt,sha256=Vn6TvAN9d67Lsbkcs0UcIiOBI5xDpNBm_MOOzc1h-YU,88
|
|
8
|
+
awslabs_dynamodb_mcp_server-1.0.1.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
9
|
+
awslabs_dynamodb_mcp_server-1.0.1.dist-info/licenses/NOTICE,sha256=47UMmTFkf8rUc_JaJfdWe6NsAJQOcZNPZIL6JzU_k5U,95
|
|
10
|
+
awslabs_dynamodb_mcp_server-1.0.1.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
awslabs/__init__.py,sha256=47wJeKcStxEJwX7SVVV2pnAWYR8FxcaYoT3YTmZ5Plg,674
|
|
2
|
-
awslabs/dynamodb_mcp_server/__init__.py,sha256=v9gwAZRDfCdRfC-s0e9gUXPK3rzXrdHjBywl4e05cGs,616
|
|
3
|
-
awslabs/dynamodb_mcp_server/common.py,sha256=TP05-UxC7b_IUfuO_Y-DsySPfkAmPl29ltgleemHfWk,10806
|
|
4
|
-
awslabs/dynamodb_mcp_server/server.py,sha256=yjEvGXecHaUnwoDLy5UPy_A5repNLltduXQclejy9pA,32307
|
|
5
|
-
awslabs_dynamodb_mcp_server-1.0.0.dist-info/METADATA,sha256=8yuKIKsejg7ubjyTkzzddk1w_snPyo1myTQZ8YqOJLA,5892
|
|
6
|
-
awslabs_dynamodb_mcp_server-1.0.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
7
|
-
awslabs_dynamodb_mcp_server-1.0.0.dist-info/entry_points.txt,sha256=Vn6TvAN9d67Lsbkcs0UcIiOBI5xDpNBm_MOOzc1h-YU,88
|
|
8
|
-
awslabs_dynamodb_mcp_server-1.0.0.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
9
|
-
awslabs_dynamodb_mcp_server-1.0.0.dist-info/licenses/NOTICE,sha256=47UMmTFkf8rUc_JaJfdWe6NsAJQOcZNPZIL6JzU_k5U,95
|
|
10
|
-
awslabs_dynamodb_mcp_server-1.0.0.dist-info/RECORD,,
|
{awslabs_dynamodb_mcp_server-1.0.0.dist-info → awslabs_dynamodb_mcp_server-1.0.1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|