awslabs.dynamodb-mcp-server 1.0.1__py3-none-any.whl → 1.0.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.
Potentially problematic release.
This version of awslabs.dynamodb-mcp-server might be problematic. Click here for more details.
- awslabs/dynamodb_mcp_server/server.py +53 -6
- {awslabs_dynamodb_mcp_server-1.0.1.dist-info → awslabs_dynamodb_mcp_server-1.0.2.dist-info}/METADATA +1 -1
- awslabs_dynamodb_mcp_server-1.0.2.dist-info/RECORD +10 -0
- awslabs_dynamodb_mcp_server-1.0.1.dist-info/RECORD +0 -10
- {awslabs_dynamodb_mcp_server-1.0.1.dist-info → awslabs_dynamodb_mcp_server-1.0.2.dist-info}/WHEEL +0 -0
- {awslabs_dynamodb_mcp_server-1.0.1.dist-info → awslabs_dynamodb_mcp_server-1.0.2.dist-info}/entry_points.txt +0 -0
- {awslabs_dynamodb_mcp_server-1.0.1.dist-info → awslabs_dynamodb_mcp_server-1.0.2.dist-info}/licenses/LICENSE +0 -0
- {awslabs_dynamodb_mcp_server-1.0.1.dist-info → awslabs_dynamodb_mcp_server-1.0.2.dist-info}/licenses/NOTICE +0 -0
|
@@ -54,8 +54,51 @@ from typing import Any, Dict, List, Literal, Union
|
|
|
54
54
|
|
|
55
55
|
app = FastMCP(
|
|
56
56
|
name='dynamodb-server',
|
|
57
|
-
instructions=
|
|
58
|
-
|
|
57
|
+
instructions="""The official MCP Server for interacting with AWS DynamoDB
|
|
58
|
+
|
|
59
|
+
IMPORTANT: DynamoDB Attribute Value Format
|
|
60
|
+
-----------------------------------------
|
|
61
|
+
When working with DynamoDB, all attribute values must be specified with their data types.
|
|
62
|
+
Each attribute value is represented as a dictionary with a single key-value pair where the key
|
|
63
|
+
is the data type and the value is the data itself:
|
|
64
|
+
|
|
65
|
+
- S: String
|
|
66
|
+
Example: {"S": "Hello"}
|
|
67
|
+
|
|
68
|
+
- N: Number (sent as a string)
|
|
69
|
+
Example: {"N": "123.45"}
|
|
70
|
+
|
|
71
|
+
- B: Binary data (Base64-encoded)
|
|
72
|
+
Example: {"B": "dGhpcyB0ZXh0IGlzIGJhc2U2NC1lbmNvZGVk"}
|
|
73
|
+
|
|
74
|
+
- BOOL: Boolean value
|
|
75
|
+
Example: {"BOOL": true}
|
|
76
|
+
|
|
77
|
+
- NULL: Null value
|
|
78
|
+
Example: {"NULL": true}
|
|
79
|
+
|
|
80
|
+
- L: List of AttributeValue objects
|
|
81
|
+
Example: {"L": [{"S": "Cookies"}, {"S": "Coffee"}, {"N": "3.14159"}]}
|
|
82
|
+
|
|
83
|
+
- M: Map of attribute name/value pairs
|
|
84
|
+
Example: {"M": {"Name": {"S": "Joe"}, "Age": {"N": "35"}}}
|
|
85
|
+
|
|
86
|
+
- SS: String Set (array of strings)
|
|
87
|
+
Example: {"SS": ["Giraffe", "Hippo", "Zebra"]}
|
|
88
|
+
|
|
89
|
+
- NS: Number Set (array of strings representing numbers)
|
|
90
|
+
Example: {"NS": ["42.2", "-19", "7.5", "3.14"]}
|
|
91
|
+
|
|
92
|
+
- BS: Binary Set (array of Base64-encoded binary data objects)
|
|
93
|
+
Example: {"BS": ["U3Vubnk=", "UmFpbnk=", "U25vd3k="]}
|
|
94
|
+
|
|
95
|
+
Common usage examples:
|
|
96
|
+
- Primary key: {"userId": {"S": "user123"}}
|
|
97
|
+
- Composite key: {"userId": {"S": "user123"}, "timestamp": {"N": "1612345678"}}
|
|
98
|
+
- Expression attribute values: {":minScore": {"N": "100"}, ":active": {"BOOL": true}}
|
|
99
|
+
- Complete item: {"userId": {"S": "user123"}, "score": {"N": "100"}, "data": {"B": "binarydata=="}}
|
|
100
|
+
""",
|
|
101
|
+
version='0.1.2',
|
|
59
102
|
)
|
|
60
103
|
|
|
61
104
|
|
|
@@ -81,7 +124,9 @@ index_name = Field(
|
|
|
81
124
|
default=None,
|
|
82
125
|
description='The name of a GSI',
|
|
83
126
|
)
|
|
84
|
-
key: Dict[str, KeyAttributeValue] = Field(
|
|
127
|
+
key: Dict[str, KeyAttributeValue] = Field(
|
|
128
|
+
description='The primary key of an item. Must use DynamoDB attribute value format (see IMPORTANT note about DynamoDB Attribute Value Format).'
|
|
129
|
+
)
|
|
85
130
|
filter_expression: str = Field(
|
|
86
131
|
default=None,
|
|
87
132
|
description='Filter conditions expression that DynamoDB applies to filter out data',
|
|
@@ -94,7 +139,8 @@ expression_attribute_names: Dict[str, str] = Field(
|
|
|
94
139
|
default=None, description='Substitution tokens for attribute names in an expression.'
|
|
95
140
|
)
|
|
96
141
|
expression_attribute_values: Dict[str, AttributeValue] = Field(
|
|
97
|
-
default=None,
|
|
142
|
+
default=None,
|
|
143
|
+
description='Values that can be substituted in an expression. Must use DynamoDB attribute value format (see IMPORTANT note about DynamoDB Attribute Value Format).',
|
|
98
144
|
)
|
|
99
145
|
select: Select = Field(
|
|
100
146
|
default=None,
|
|
@@ -102,7 +148,8 @@ select: Select = Field(
|
|
|
102
148
|
)
|
|
103
149
|
limit: int = Field(default=None, description='The maximum number of items to evaluate', ge=1)
|
|
104
150
|
exclusive_start_key: Dict[str, KeyAttributeValue] = Field(
|
|
105
|
-
default=None,
|
|
151
|
+
default=None,
|
|
152
|
+
description='Use the LastEvaluatedKey from the previous call. Must use DynamoDB attribute value format (see IMPORTANT note about DynamoDB Attribute Value Format).',
|
|
106
153
|
)
|
|
107
154
|
|
|
108
155
|
billing_mode: Literal['PROVISIONED', 'PAY_PER_REQUEST'] = Field(
|
|
@@ -324,7 +371,7 @@ async def get_item(
|
|
|
324
371
|
async def put_item(
|
|
325
372
|
table_name: str = table_name,
|
|
326
373
|
item: Dict[str, AttributeValue] = Field(
|
|
327
|
-
description='A map of attribute name/value pairs, one for each attribute.'
|
|
374
|
+
description='A map of attribute name/value pairs, one for each attribute. Must use DynamoDB attribute value format (see IMPORTANT note about DynamoDB Attribute Value Format).'
|
|
328
375
|
),
|
|
329
376
|
condition_expression: str = Field(
|
|
330
377
|
default=None,
|
{awslabs_dynamodb_mcp_server-1.0.1.dist-info → awslabs_dynamodb_mcp_server-1.0.2.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.2
|
|
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/
|
|
@@ -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=V-fhlA3dHVTSlK8hDomRGciFI0C8sY4KFzRH5G3GdyQ,34815
|
|
5
|
+
awslabs_dynamodb_mcp_server-1.0.2.dist-info/METADATA,sha256=GmLNGdrsYLWw2lfw7OwvH6mpefi8HmfQ4IOU2ZQyCaw,5893
|
|
6
|
+
awslabs_dynamodb_mcp_server-1.0.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
7
|
+
awslabs_dynamodb_mcp_server-1.0.2.dist-info/entry_points.txt,sha256=Vn6TvAN9d67Lsbkcs0UcIiOBI5xDpNBm_MOOzc1h-YU,88
|
|
8
|
+
awslabs_dynamodb_mcp_server-1.0.2.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
9
|
+
awslabs_dynamodb_mcp_server-1.0.2.dist-info/licenses/NOTICE,sha256=47UMmTFkf8rUc_JaJfdWe6NsAJQOcZNPZIL6JzU_k5U,95
|
|
10
|
+
awslabs_dynamodb_mcp_server-1.0.2.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
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,,
|
{awslabs_dynamodb_mcp_server-1.0.1.dist-info → awslabs_dynamodb_mcp_server-1.0.2.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|