awslabs.dynamodb-mcp-server 1.0.8__py3-none-any.whl → 2.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/dynamodb_mcp_server/__init__.py +1 -1
- awslabs/dynamodb_mcp_server/common.py +1 -282
- awslabs/dynamodb_mcp_server/server.py +9 -879
- {awslabs_dynamodb_mcp_server-1.0.8.dist-info → awslabs_dynamodb_mcp_server-2.0.1.dist-info}/METADATA +35 -49
- awslabs_dynamodb_mcp_server-2.0.1.dist-info/RECORD +11 -0
- awslabs_dynamodb_mcp_server-1.0.8.dist-info/RECORD +0 -11
- {awslabs_dynamodb_mcp_server-1.0.8.dist-info → awslabs_dynamodb_mcp_server-2.0.1.dist-info}/WHEEL +0 -0
- {awslabs_dynamodb_mcp_server-1.0.8.dist-info → awslabs_dynamodb_mcp_server-2.0.1.dist-info}/entry_points.txt +0 -0
- {awslabs_dynamodb_mcp_server-1.0.8.dist-info → awslabs_dynamodb_mcp_server-2.0.1.dist-info}/licenses/LICENSE +0 -0
- {awslabs_dynamodb_mcp_server-1.0.8.dist-info → awslabs_dynamodb_mcp_server-2.0.1.dist-info}/licenses/NOTICE +0 -0
{awslabs_dynamodb_mcp_server-1.0.8.dist-info → awslabs_dynamodb_mcp_server-2.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:
|
|
3
|
+
Version: 2.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/
|
|
@@ -22,9 +22,11 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.13
|
|
23
23
|
Requires-Python: >=3.10
|
|
24
24
|
Requires-Dist: boto3==1.40.5
|
|
25
|
+
Requires-Dist: dspy-ai>=2.6.27
|
|
25
26
|
Requires-Dist: loguru==0.7.3
|
|
26
27
|
Requires-Dist: mcp[cli]==1.12.4
|
|
27
28
|
Requires-Dist: pydantic==2.11.7
|
|
29
|
+
Requires-Dist: strands-agents>=1.5.0
|
|
28
30
|
Requires-Dist: typing-extensions==4.14.1
|
|
29
31
|
Description-Content-Type: text/markdown
|
|
30
32
|
|
|
@@ -32,64 +34,48 @@ Description-Content-Type: text/markdown
|
|
|
32
34
|
|
|
33
35
|
The official MCP Server for interacting with AWS DynamoDB
|
|
34
36
|
|
|
35
|
-
This
|
|
37
|
+
This server provides expert DynamoDB design guidance and data modeling assistance.
|
|
36
38
|
|
|
37
39
|
## Available MCP Tools
|
|
38
40
|
|
|
39
41
|
### Design & Modeling
|
|
40
42
|
- `dynamodb_data_modeling` - Retrieves the complete DynamoDB Data Modeling Expert prompt
|
|
41
43
|
|
|
42
|
-
|
|
43
|
-
- `create_table` - Creates a new DynamoDB table with optional secondary indexes
|
|
44
|
-
- `delete_table` - Deletes a table and all of its items
|
|
45
|
-
- `describe_table` - Returns table information including status, creation time, key schema and indexes
|
|
46
|
-
- `list_tables` - Returns a paginated list of table names in your account
|
|
47
|
-
- `update_table` - Modifies table settings including provisioned throughput, global secondary indexes, and DynamoDB Streams configuration
|
|
48
|
-
|
|
49
|
-
### Item Operations
|
|
50
|
-
- `get_item` - Returns attributes for an item with the given primary key
|
|
51
|
-
- `put_item` - Creates a new item or replaces an existing item in a table
|
|
52
|
-
- `update_item` - Edits an existing item's attributes, or adds a new item if it does not already exist
|
|
53
|
-
- `delete_item` - Deletes a single item in a table by primary key
|
|
54
|
-
|
|
55
|
-
### Query and Scan Operations
|
|
56
|
-
- `query` - Returns items from a table or index matching a partition key value, with optional sort key filtering
|
|
57
|
-
- `scan` - Returns items and attributes by scanning a table or secondary index
|
|
58
|
-
|
|
59
|
-
### Backup and Recovery
|
|
60
|
-
- `create_backup` - Creates a backup of a DynamoDB table
|
|
61
|
-
- `describe_backup` - Describes an existing backup of a table
|
|
62
|
-
- `list_backups` - Returns a list of table backups
|
|
63
|
-
- `restore_table_from_backup` - Creates a new table from a backup
|
|
64
|
-
- `describe_continuous_backups` - Returns continuous backup and point in time recovery status
|
|
65
|
-
- `update_continuous_backups` - Enables or disables point in time recovery
|
|
66
|
-
|
|
67
|
-
### Time to Live (TTL)
|
|
68
|
-
- `update_time_to_live` - Enables or disables Time to Live (TTL) for the specified table
|
|
69
|
-
- `describe_time_to_live` - Returns the Time to Live (TTL) settings for a table
|
|
70
|
-
|
|
71
|
-
### Export Operations
|
|
72
|
-
- `describe_export` - Returns information about a table export
|
|
73
|
-
- `list_exports` - Returns a list of table exports
|
|
74
|
-
|
|
75
|
-
### Tags and Resource Policies
|
|
76
|
-
- `put_resource_policy` - Attaches a resource-based policy document to a table or stream
|
|
77
|
-
- `get_resource_policy` - Returns the resource-based policy document attached to a table or stream
|
|
78
|
-
- `tag_resource` - Adds tags to a DynamoDB resource
|
|
79
|
-
- `untag_resource` - Removes tags from a DynamoDB resource
|
|
80
|
-
- `list_tags_of_resource` - Returns tags for a DynamoDB resource
|
|
81
|
-
|
|
82
|
-
### Misc
|
|
83
|
-
- `describe_limits` - Returns the current provisioned-capacity quotas for your AWS account
|
|
84
|
-
- `describe_endpoints` - Returns DynamoDB endpoints for the current region
|
|
44
|
+
## Migration Notice
|
|
85
45
|
|
|
86
|
-
|
|
46
|
+
Starting with version 2.0.0, this server focuses exclusively on DynamoDB design and modeling guidance. All operational DynamoDB management tools (table operations, item operations, queries, backups, etc.) have been removed in favour of the [AWS API MCP Server](https://github.com/awslabs/mcp/tree/main/src/aws-api-mcp-server) which provides the same capability and more.
|
|
47
|
+
|
|
48
|
+
### Recommended: AWS API MCP Server
|
|
49
|
+
|
|
50
|
+
For operational DynamoDB management, use the [AWS API MCP Server](https://github.com/awslabs/mcp/tree/main/src/aws-api-mcp-server) which provides comprehensive AWS service management including all DynamoDB operations. [Migration guide available here](https://github.com/awslabs/mcp/tree/main/src/aws-api-mcp-server).
|
|
51
|
+
|
|
52
|
+
### Not Recommended: Legacy Version
|
|
53
|
+
|
|
54
|
+
If you must use the previous operational tools, you can pin to version 1.0.9, though this is not recommended:
|
|
55
|
+
|
|
56
|
+
```json
|
|
57
|
+
{
|
|
58
|
+
"mcpServers": {
|
|
59
|
+
"awslabs.dynamodb-mcp-server": {
|
|
60
|
+
"command": "uvx",
|
|
61
|
+
"args": ["awslabs.dynamodb-mcp-server@1.0.9"],
|
|
62
|
+
"env": {
|
|
63
|
+
"DDB-MCP-READONLY": "true",
|
|
64
|
+
"AWS_PROFILE": "default",
|
|
65
|
+
"AWS_REGION": "us-west-2",
|
|
66
|
+
"FASTMCP_LOG_LEVEL": "ERROR"
|
|
67
|
+
},
|
|
68
|
+
"disabled": false,
|
|
69
|
+
"autoApprove": []
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
```
|
|
87
74
|
|
|
88
|
-
|
|
75
|
+
## Instructions
|
|
89
76
|
|
|
90
|
-
|
|
77
|
+
This MCP Server provides DynamoDB design and modeling guidance only. For operational DynamoDB management (retrieving data, managing tables, etc.), use the [AWS API MCP Server](https://github.com/awslabs/mcp/tree/main/src/aws-api-mcp-server) which provides comprehensive DynamoDB operations. [Migration guide available here](https://github.com/awslabs/mcp/tree/main/src/aws-api-mcp-server).
|
|
91
78
|
|
|
92
|
-
All tools support an optional `region_name` parameter to specify which AWS region to operate in. If not provided, it will use the AWS_REGION environment variable or default to 'us-west-2'.
|
|
93
79
|
|
|
94
80
|
## Prerequisites
|
|
95
81
|
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
awslabs/__init__.py,sha256=WuqxdDgUZylWNmVoPKiK7qGsTB_G4UmuXIrJ-VBwDew,731
|
|
2
|
+
awslabs/dynamodb_mcp_server/__init__.py,sha256=hJ7kw5_k2dM1Oyf4t2H4FTU6MFmdqfhbdtGgoodLci4,673
|
|
3
|
+
awslabs/dynamodb_mcp_server/common.py,sha256=--RWFURrGYjRjAnOuIbyX-DDrfZy1EeQXXRg4lASFB4,1677
|
|
4
|
+
awslabs/dynamodb_mcp_server/server.py,sha256=-g3MIL7wYG7LnOUV47mAb2lrJTvOGipTbWbBA-jvGFs,2919
|
|
5
|
+
awslabs/dynamodb_mcp_server/prompts/dynamodb_architect.md,sha256=gaWjHmTu2oFiFnEKCs20Xe2JbClr6q4kP9e4_MK1Shw,39866
|
|
6
|
+
awslabs_dynamodb_mcp_server-2.0.1.dist-info/METADATA,sha256=lMeU3euDvfmGDzSKS_vimIw-c-3ErSA4WoJ1b-iNvOs,6459
|
|
7
|
+
awslabs_dynamodb_mcp_server-2.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
8
|
+
awslabs_dynamodb_mcp_server-2.0.1.dist-info/entry_points.txt,sha256=Vn6TvAN9d67Lsbkcs0UcIiOBI5xDpNBm_MOOzc1h-YU,88
|
|
9
|
+
awslabs_dynamodb_mcp_server-2.0.1.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
10
|
+
awslabs_dynamodb_mcp_server-2.0.1.dist-info/licenses/NOTICE,sha256=47UMmTFkf8rUc_JaJfdWe6NsAJQOcZNPZIL6JzU_k5U,95
|
|
11
|
+
awslabs_dynamodb_mcp_server-2.0.1.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
awslabs/__init__.py,sha256=WuqxdDgUZylWNmVoPKiK7qGsTB_G4UmuXIrJ-VBwDew,731
|
|
2
|
-
awslabs/dynamodb_mcp_server/__init__.py,sha256=b5YjpF4kdM042WyotR4AXERKAf92-rAHObO1KjDh1_4,673
|
|
3
|
-
awslabs/dynamodb_mcp_server/common.py,sha256=aj1uOGa63TQdM3r75Zht74y1OGgUblDEQ-0h1RZHfn0,11422
|
|
4
|
-
awslabs/dynamodb_mcp_server/server.py,sha256=rJhbetBZ0jxu4GyQNvuU5W8FtGKfo9iM1-YNYfZaQWE,36698
|
|
5
|
-
awslabs/dynamodb_mcp_server/prompts/dynamodb_architect.md,sha256=gaWjHmTu2oFiFnEKCs20Xe2JbClr6q4kP9e4_MK1Shw,39866
|
|
6
|
-
awslabs_dynamodb_mcp_server-1.0.8.dist-info/METADATA,sha256=DxOoG31rakmdYwBrdaOyUe1ZkAZN17K1Nr_6iFot7TA,7880
|
|
7
|
-
awslabs_dynamodb_mcp_server-1.0.8.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
8
|
-
awslabs_dynamodb_mcp_server-1.0.8.dist-info/entry_points.txt,sha256=Vn6TvAN9d67Lsbkcs0UcIiOBI5xDpNBm_MOOzc1h-YU,88
|
|
9
|
-
awslabs_dynamodb_mcp_server-1.0.8.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
10
|
-
awslabs_dynamodb_mcp_server-1.0.8.dist-info/licenses/NOTICE,sha256=47UMmTFkf8rUc_JaJfdWe6NsAJQOcZNPZIL6JzU_k5U,95
|
|
11
|
-
awslabs_dynamodb_mcp_server-1.0.8.dist-info/RECORD,,
|
{awslabs_dynamodb_mcp_server-1.0.8.dist-info → awslabs_dynamodb_mcp_server-2.0.1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|