awslabs.dynamodb-mcp-server 0.1.1__py3-none-any.whl → 0.1.3__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/{dynamodb_server.py → server.py} +8 -3
- {awslabs_dynamodb_mcp_server-0.1.1.dist-info → awslabs_dynamodb_mcp_server-0.1.3.dist-info}/METADATA +2 -3
- awslabs_dynamodb_mcp_server-0.1.3.dist-info/RECORD +10 -0
- awslabs_dynamodb_mcp_server-0.1.1.dist-info/RECORD +0 -10
- {awslabs_dynamodb_mcp_server-0.1.1.dist-info → awslabs_dynamodb_mcp_server-0.1.3.dist-info}/WHEEL +0 -0
- {awslabs_dynamodb_mcp_server-0.1.1.dist-info → awslabs_dynamodb_mcp_server-0.1.3.dist-info}/entry_points.txt +0 -0
- {awslabs_dynamodb_mcp_server-0.1.1.dist-info → awslabs_dynamodb_mcp_server-0.1.3.dist-info}/licenses/LICENSE +0 -0
- {awslabs_dynamodb_mcp_server-0.1.1.dist-info → awslabs_dynamodb_mcp_server-0.1.3.dist-info}/licenses/NOTICE +0 -0
|
@@ -32,7 +32,7 @@ from awslabs.dynamodb_mcp_server.common import (
|
|
|
32
32
|
handle_exceptions,
|
|
33
33
|
)
|
|
34
34
|
from botocore.config import Config
|
|
35
|
-
from fastmcp import FastMCP
|
|
35
|
+
from mcp.server.fastmcp import FastMCP
|
|
36
36
|
from pydantic import Field
|
|
37
37
|
from typing import Any, Dict, List, Literal, Union
|
|
38
38
|
|
|
@@ -40,7 +40,7 @@ from typing import Any, Dict, List, Literal, Union
|
|
|
40
40
|
app = FastMCP(
|
|
41
41
|
name='dynamodb-server',
|
|
42
42
|
instructions='The official MCP Server for interacting with AWS DynamoDB',
|
|
43
|
-
version='0.1.
|
|
43
|
+
version='0.1.1',
|
|
44
44
|
)
|
|
45
45
|
|
|
46
46
|
|
|
@@ -802,5 +802,10 @@ async def update_continuous_backups(
|
|
|
802
802
|
return response['ContinuousBackupsDescription']
|
|
803
803
|
|
|
804
804
|
|
|
805
|
-
|
|
805
|
+
def main():
|
|
806
|
+
"""Main entry point for the MCP server application."""
|
|
806
807
|
app.run()
|
|
808
|
+
|
|
809
|
+
|
|
810
|
+
if __name__ == '__main__':
|
|
811
|
+
main()
|
{awslabs_dynamodb_mcp_server-0.1.1.dist-info → awslabs_dynamodb_mcp_server-0.1.3.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: awslabs.dynamodb-mcp-server
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
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,7 +22,6 @@ 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.28.0
|
|
25
|
-
Requires-Dist: fastmcp>=0.1.0
|
|
26
25
|
Requires-Dist: loguru>=0.7.0
|
|
27
26
|
Requires-Dist: mcp[cli]>=1.6.0
|
|
28
27
|
Requires-Dist: pydantic>=2.10.6
|
|
@@ -105,9 +104,9 @@ Add the MCP to your favorite agentic tools. e.g. for Amazon Q Developer CLI MCP,
|
|
|
105
104
|
"command": "uvx",
|
|
106
105
|
"args": ["awslabs.dynamodb-mcp-server@latest"],
|
|
107
106
|
"env": {
|
|
108
|
-
"FASTMCP_LOG_LEVEL": "ERROR"
|
|
109
107
|
"AWS_PROFILE": "default",
|
|
110
108
|
"AWS_REGION": "us-west-2",
|
|
109
|
+
"FASTMCP_LOG_LEVEL": "ERROR"
|
|
111
110
|
},
|
|
112
111
|
"disabled": false,
|
|
113
112
|
"autoApprove": []
|
|
@@ -0,0 +1,10 @@
|
|
|
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=RIR5d1tfWteCy7Iv-vU_6Sip2zERvOapwe6eTCH9EF0,10351
|
|
4
|
+
awslabs/dynamodb_mcp_server/server.py,sha256=UYhvh-o1jdryASMGI1Km0wtFavfqcUC9uHjeJsdiidQ,31449
|
|
5
|
+
awslabs_dynamodb_mcp_server-0.1.3.dist-info/METADATA,sha256=LJbrCxKxVScbcRW1wyqmT56Y1IAFpmhtYSPBof2u5bk,5856
|
|
6
|
+
awslabs_dynamodb_mcp_server-0.1.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
7
|
+
awslabs_dynamodb_mcp_server-0.1.3.dist-info/entry_points.txt,sha256=Vn6TvAN9d67Lsbkcs0UcIiOBI5xDpNBm_MOOzc1h-YU,88
|
|
8
|
+
awslabs_dynamodb_mcp_server-0.1.3.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
9
|
+
awslabs_dynamodb_mcp_server-0.1.3.dist-info/licenses/NOTICE,sha256=47UMmTFkf8rUc_JaJfdWe6NsAJQOcZNPZIL6JzU_k5U,95
|
|
10
|
+
awslabs_dynamodb_mcp_server-0.1.3.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=RIR5d1tfWteCy7Iv-vU_6Sip2zERvOapwe6eTCH9EF0,10351
|
|
4
|
-
awslabs/dynamodb_mcp_server/dynamodb_server.py,sha256=V99dgF6V9Oof-hqU3NzLPpfPjj_nSGxVPeYYmHpdmt8,31354
|
|
5
|
-
awslabs_dynamodb_mcp_server-0.1.1.dist-info/METADATA,sha256=gFis2LqGXoCOlNk7OT3ydL01p968v9Zsc7T2xlqYl24,5886
|
|
6
|
-
awslabs_dynamodb_mcp_server-0.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
7
|
-
awslabs_dynamodb_mcp_server-0.1.1.dist-info/entry_points.txt,sha256=Vn6TvAN9d67Lsbkcs0UcIiOBI5xDpNBm_MOOzc1h-YU,88
|
|
8
|
-
awslabs_dynamodb_mcp_server-0.1.1.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
9
|
-
awslabs_dynamodb_mcp_server-0.1.1.dist-info/licenses/NOTICE,sha256=47UMmTFkf8rUc_JaJfdWe6NsAJQOcZNPZIL6JzU_k5U,95
|
|
10
|
-
awslabs_dynamodb_mcp_server-0.1.1.dist-info/RECORD,,
|
{awslabs_dynamodb_mcp_server-0.1.1.dist-info → awslabs_dynamodb_mcp_server-0.1.3.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|