feat: Add AWS DynamoDB KV Storage tool #5111
Open
+948
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds a Key-Value Storage tool to Flowise, enabling persistent storage and retrieval of data with built-in versioning capabilities. It uses AWS DynamoDB as a backbone.
Tool has 2 modes: store or retrieval.
Successfully stored value with key "total_comp" at 2025-08-20T05:41:09.608Z
2
returns second last version of the object. Example response:Note
Retrieval mode works great with JSONPathExtractor introduced here
Example use-case
Monitor a website for changes by storing snapshots and comparing different versions over time. This is useful for tracking competitor updates, detect when news articles are updated or corrected, or track feature announcements and product updates. Diff together with old and new versions can be feed directly to LLM to make sense of it.
Implementation Details
/packages/components/src/awsToolsUtils.ts
for credential managementpk
and Search keysk
. Corresponding validation is done during configuration phase. The schema isConfiguration
The tool requires:
Testing
Example of the flow:

Store mode node configuration:

Retrieval mode node configuration:
