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

@mem0/n8n-nodes-mem0

v0.1.3

Published

n8n community node for Mem0 — the memory layer for AI agents. Add, search, get, update, and delete long-term memories.

Downloads

609

Readme

@mem0/n8n-nodes-mem0

This is an n8n community node that lets you use Mem0 — the memory layer for AI agents — in your n8n workflows.

Mem0 gives your agents long-term memory: add memories from conversations, then search and recall them across sessions.

n8n is a fair-code licensed workflow automation platform.

Installation · Operations · Credentials · Usage · Resources

Installation

Follow the community nodes installation guide and install @mem0/n8n-nodes-mem0.

Operations

The Memory resource supports:

| Operation | Description | Endpoint | | --- | --- | --- | | Add | Extract and store memories from messages | POST /v3/memories/add/ | | Search | Semantic search over stored memories | POST /v3/memories/search/ | | Get Many | List stored memories (single page, or Return All) | POST /v3/memories/ | | Get | Retrieve a single memory by ID | GET /v1/memories/{id}/ | | Update | Update a memory's text or metadata | PUT /v1/memories/{id}/ | | Delete | Delete a single memory by ID | DELETE /v1/memories/{id}/ |

Add & asynchronous extraction

By default, Add runs LLM-based extraction asynchronously: the API returns an event ID and the node polls until extraction finishes, then returns the resulting memories.

Two independent controls:

  • Wait for Completion (on by default) decides whether the node polls. Turn it off to return immediately with the event ID.
  • Infer (on by default, under Additional Fields) decides whether the API runs LLM extraction at all. Turn it off to store the messages verbatim.

Custom Instructions, Custom Categories, Includes, and Excludes (also under Additional Fields) steer what extraction keeps for that call. Agent ID, App ID, and Run ID live there too, and scope the memory alongside (or instead of) User ID.

Entity filters on Search & Get Many

Both take User ID, Agent ID, App ID, and Run ID, and at least one is required — the API rejects a query with no entity scope, and the node fails with a clear message before calling it.

Supplying several combines them with OR, giving the union of those scopes. Mem0 indexes each entity separately, so an AND across user_id and agent_id matches nothing even for a memory written with both. To narrow instead of widen, run one operation per entity id.

Credentials

You need a Mem0 API key. Create one at app.mem0.ai → Settings → API Keys. The key is sent as Authorization: Token <key>.

Usage

This node is also usable as a tool by n8n's AI Agent node — attach it so an agent can "remember" and "recall" autonomously.

A typical loop:

  1. Search memory before answering, filtered by User ID (or Agent ID / App ID / Run ID).
  2. Add durable facts after a meaningful exchange.

Memory writes are asynchronous by default; allow a moment after an Add before searching for the same content.

Telemetry

This node sends no third-party telemetry. Its API requests are tagged with source: "N8N" so Mem0 can see aggregate usage of the integration. No separate analytics service is contacted and nothing else is collected.

Resources

License

Apache-2.0