Skip to content

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)

OperationWhat it does
AddStore memories from a message (Messages as text or [{role,content}] JSON, User ID, Infer, Metadata) → POST /api/memories
SearchRecall relevant memories (Query, Top K, User ID, extra Filters) → POST /api/memories/search
Get ManyList a subject's memories (User ID, Limit) → GET /api/memories
DeleteRemove one memory (Memory ID) → DELETE /api/memories/{id}

Example

A support-chatbot workflow:

  1. Chat Trigger → user message.
  2. Suprflo → Search (Query = the message, User ID = the customer id) to fetch context.
  3. AI Agent / LLM node, injecting the retrieved memories into the prompt.
  4. 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.

The memory layer for AI agents.