@gravity-platform/aws-dynamodb 1.1.2 → 1.1.4
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.
- package/package.json +42 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravity-platform/aws-dynamodb",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "AWS DynamoDB integration for Gravity workflow system - includes put, fetch, and service operations",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -44,6 +44,46 @@
|
|
|
44
44
|
"typescript": "^5.0.0"
|
|
45
45
|
},
|
|
46
46
|
"gravity": {
|
|
47
|
-
"
|
|
47
|
+
"displayName": "AWS DynamoDB",
|
|
48
|
+
"category": "storage",
|
|
49
|
+
"logoUrl": "https://res.cloudinary.com/sonik/image/upload/v1751473913/gravity/icons/DynamoDB.png",
|
|
50
|
+
"nodes": [
|
|
51
|
+
{
|
|
52
|
+
"name": "DynamoDB",
|
|
53
|
+
"type": "PromiseNode",
|
|
54
|
+
"description": "Put items into DynamoDB tables with automatic marshalling",
|
|
55
|
+
"category": "Storage",
|
|
56
|
+
"mcp": false
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "DynamoDB Fetch",
|
|
60
|
+
"type": "PromiseNode",
|
|
61
|
+
"description": "Query and scan DynamoDB tables with filter expressions",
|
|
62
|
+
"category": "Storage",
|
|
63
|
+
"mcp": false
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "DynamoDB Service",
|
|
67
|
+
"type": "PromiseNode",
|
|
68
|
+
"description": "MCP-exposed DynamoDB operations for agent tool calls",
|
|
69
|
+
"category": "Storage",
|
|
70
|
+
"mcp": true
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"features": [
|
|
74
|
+
"Put & batch write",
|
|
75
|
+
"Query with key conditions",
|
|
76
|
+
"Scan with filters",
|
|
77
|
+
"MCP service interface",
|
|
78
|
+
"Auto marshalling/unmarshalling"
|
|
79
|
+
],
|
|
80
|
+
"credentials": [
|
|
81
|
+
{
|
|
82
|
+
"name": "AWS Credentials",
|
|
83
|
+
"type": "awsCredentials",
|
|
84
|
+
"required": true,
|
|
85
|
+
"description": "AWS access key + secret with DynamoDB permissions"
|
|
86
|
+
}
|
|
87
|
+
]
|
|
48
88
|
}
|
|
49
89
|
}
|