npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@stackflo-labs/n8n-nodes-retainr

v0.2.7

Published

n8n community node for retainr.dev — AI agent memory persistence API. Store, search, and retrieve semantic memories for AI agents across workflow runs.

Readme

@stackflo-labs/n8n-nodes-retainr

n8n community node for retainr.dev — the AI agent memory persistence API.

Give your n8n AI agents long-term memory that persists across workflow runs. Store facts, preferences, and context, then retrieve them with semantic search — so your agents remember what matters.

Features

| Operation | Description | |-----------|-------------| | Store | Save a memory with scope, tags, metadata, TTL, and deduplication | | Search | Semantic similarity search across stored memories | | Get Context | Retrieve pre-formatted memory context ready for LLM system prompts | | List | Browse memories with filters (scope, user, session, tags) | | Delete | Remove memories by filter criteria | | Get Workspace Info | View plan usage, API keys, and workspace details |

Installation

n8n Cloud & Desktop

  1. Go to Settings > Community Nodes
  2. Search for @stackflo-labs/n8n-nodes-retainr
  3. Click Install

Self-hosted n8n

cd ~/.n8n
npm install @stackflo-labs/n8n-nodes-retainr

Then restart n8n.

Setup

  1. Sign up at retainr.dev and get your API key
  2. In n8n, go to Credentials > New > Retainr API
  3. Paste your API key (rec_live_...)
  4. The default Base URL (https://api.retainr.dev) works out of the box

Usage Examples

Store a memory after a conversation

  1. Add the Retainr node after your AI Agent
  2. Set Resource to Memory, Operation to Store
  3. Map the conversation summary to the Content field
  4. Set Scope to User and provide the User ID

Inject memory context into an LLM prompt

  1. Add a Retainr node before your AI Agent
  2. Set Operation to Get Context
  3. Use the incoming message as the Query
  4. Pass the context output into your LLM's system prompt

Deduplicate similar memories

Use the Dedup Threshold field (e.g., 0.95) when storing. If a sufficiently similar memory already exists, it will be updated instead of duplicated.

Memory Scopes

| Scope | Use case | |-------|----------| | session | Single workflow run — requires session_id | | user | Persists across runs for one user — requires user_id | | agent | Shared across users for one agent — requires agent_id | | global | Shared across the entire workspace |

AI Agent Tool

This node has usableAsTool enabled — you can use it directly as a tool inside n8n's AI Agent node, letting the agent decide when to store or recall memories autonomously.

API Documentation

Full API reference: retainr.dev/docs/api

License

MIT