n8n-nodes-reflect-memory
v1.0.3
Published
n8n community node for Reflect Memory — read, write, browse, and search AI memories.
Maintainers
Readme
n8n-nodes-reflect-memory
This is an n8n community node that integrates with Reflect Memory — a cross-agent memory layer for AI tools.
It lets you read, write, browse, and search AI memories from any n8n workflow.
n8n is a fair-code licensed workflow automation platform.
Installation
Follow the installation guide in the n8n community nodes documentation.
In the n8n UI:
- Go to Settings > Community Nodes
- Select Install
- Enter
n8n-nodes-reflect-memory - Agree to the risks and click Install
Self-hosted (npm):
cd ~/.n8n
npm install n8n-nodes-reflect-memoryCredentials
This node requires a Reflect Memory API credential:
| Field | Description |
|-------|-------------|
| API Key | Your Reflect Memory agent API key |
| Base URL | API endpoint (default: https://api.reflectmemory.com) |
To set up credentials:
- In n8n, go to Credentials > Add Credential
- Search for Reflect Memory API
- Enter your API key and (optionally) a custom base URL
- Click Save
Operations
| Operation | Description | |-----------|-------------| | Get Latest | Retrieve the most recent memory, with optional tag filter | | Get by ID | Retrieve a specific memory by its UUID | | Browse | Browse memory summaries with pagination (limit & offset) | | Get by Tag | Get memories matching any of the given tags | | Write | Create a new memory with type, title, content, tags, and vendor visibility |
Usage
Get Latest Memory
Returns the most recent memory. Optionally filter by a single tag.
Get Memory by ID
Provide a memory UUID to retrieve its full content.
Browse Memories
Paginate through memory summaries. Set Limit (1–200, default 50) and Offset (default 0).
Get Memories by Tag
Provide a comma-separated list of tags. Returns memories matching any of the given tags, with pagination support.
Write a Memory
Create a new memory with:
- Memory Type — Classification for the memory:
Semantic(facts/knowledge),Episodic(events/decisions), orProcedural(workflows/patterns). Defaults toSemantic. - Title — Short descriptive title
- Content — The memory content (supports multi-line)
- Tags — Comma-separated tags for categorization
- Allowed Vendors — Comma-separated vendor names that can access this memory, or
*for all
Example Workflow
- Schedule Trigger — Run every hour
- Reflect Memory node — Browse recent memories
- IF node — Check if memories contain a specific tag
- Reflect Memory node — Write a summary memory with results
Compatibility
- Tested with n8n version 1.x
- Requires Node.js 18+
