feat: Add AWS DynamoDB KV Storage tool#5111
Merged
Merged
Conversation
cd9e8ab to
c6c1bc1
Compare
- Add AWS DynamoDB key-value storage tool for persistent data storage - Add utility functions for AWS tools configuration
c6c1bc1 to
6e017b4
Compare
HenryHengZJ
reviewed
Sep 5, 2025
HenryHengZJ
approved these changes
Sep 11, 2025
HenryHengZJ
left a comment
Contributor
There was a problem hiding this comment.
thank you @anatolyburtsev !
erhhung
pushed a commit
to erhhung/flowise
that referenced
this pull request
Oct 5, 2025
* feat: Add AWS DynamoDB KV Storage tool - Add AWS DynamoDB key-value storage tool for persistent data storage - Add utility functions for AWS tools configuration * update SNS tool --------- Co-authored-by: Henry <hzj94@hotmail.com>
|
Dear Anatolyburtsev, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.608Z2returns 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.tsfor credential managementpkand 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:
