n8n
Give your n8n workflows long-term memory with the n8n-nodes-suprflo community node.
Install
In n8n: Settings → Community Nodes → Install → enter n8n-nodes-suprflo.
(Self-hosted n8n must allow community nodes; on n8n Cloud, install from the Community Nodes panel.)
Credential — "Suprflo API"
- API Key — from suprflo.com → Dashboard → API keys.
- Base URL — defaults to
https://api.suprflo.com.
The credential authenticates as Authorization: Bearer <apiKey> and its test hits GET /api/memories/config.
Operations (resource: Memory)
| Operation | What it does |
|---|---|
| Add | Store memories from a message (Messages as text or [{role,content}] JSON, User ID, Infer, Metadata) → POST /api/memories |
| Search | Recall relevant memories (Query, Top K, User ID, extra Filters) → POST /api/memories/search |
| Get Many | List a subject's memories (User ID, Limit) → GET /api/memories |
| Delete | Remove one memory (Memory ID) → DELETE /api/memories/{id} |
Example
A support-chatbot workflow:
- Chat Trigger → user message.
- Suprflo → Search (
Query= the message,User ID= the customer id) to fetch context. - AI Agent / LLM node, injecting the retrieved memories into the prompt.
- Suprflo → Add (
Messages= the conversation turn,User ID= customer id) to remember it.
Now every conversation compounds — the agent recalls each customer's history automatically.