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

@lumetra/n8n-nodes-engram-memory

v0.1.1

Published

n8n community node for Engram by Lumetra — durable, explainable memory for AI agents.

Readme

n8n-nodes-engram-memory

n8n community node for Engram — durable, explainable memory for AI agents, by Lumetra.

This node lets you store, query, and manage memories in Engram from any n8n workflow. It exposes six operations against the Engram REST API:

| Operation | What it does | |---|---| | Store Memory | Save a fact or piece of context to a bucket | | Query Memory | Ask a natural-language question and get a synthesized answer with cited memories | | List Memories | List raw memories in a bucket (paginated) | | List Buckets | List buckets in your tenant | | Delete Memory | Delete a single memory by ID | | Clear Memories | Wipe every memory in a bucket (destructive) |

The node is usableAsTool, so you can wire it directly into n8n's AI Agent nodes as a tool.

Install

In your n8n instance:

  1. Go to Settings → Community Nodes.
  2. Click Install a community node.
  3. Enter @lumetra/n8n-nodes-engram-memory and confirm.
  4. After install, search for Engram in the node panel.

Community nodes must be enabled on your n8n instance. For self-hosted n8n, set N8N_COMMUNITY_PACKAGES_ENABLED=true. n8n Cloud users on supported plans can install community nodes from the UI directly.

Credentials

Create an Engram API credential:

  • API Key — your Engram key (starts with eng_live_…). Create one at https://lumetra.io.
  • Base URL — leave at https://api.lumetra.io for Lumetra Cloud, or override for self-hosted Engram.

The credential's Test button calls GET /v1/buckets?limit=1 to verify the key.

Example workflow

A minimal "remember then recall" workflow:

  1. Engram → Store Memory with bucket = chatbot, content = "Acme's primary contact is Dana Lee, COO."
  2. Engram → Query Memory with bucket = chatbot, question = "Who's the contact at Acme?"
  3. The query node returns { success, answer, memories_found, explanation: { retrieved_memories: [...] } }.

For multi-agent setups, give each project its own bucket name.

Field mapping note

The user-facing Question field maps to the REST API's query field — we use "question" here to stay consistent with Engram's other surfaces (Dify, Claude, ChatGPT plugins).

Development

npm install
npm run build   # tsc → dist/

To test locally inside Docker n8n:

docker run -it --rm \
  -p 5678:5678 \
  -e N8N_COMMUNITY_PACKAGES_ENABLED=true \
  -v ~/.n8n:/home/node/.n8n \
  docker.n8n.io/n8nio/n8n

Then Settings → Community Nodes → Install and enter @lumetra/n8n-nodes-engram-memory (after the package is published to npm), or use npm link for an unpublished local build.

Privacy

See PRIVACY.md.

License

MIT © Lumetra, Inc.