Open Source AI Memory Storage for NodeJS Projects

✍️ OpenClawRadar📅 Published: April 18, 2026🔗 Source
Open Source AI Memory Storage for NodeJS Projects
Ad

What Mind Palace Does

Mind Palace is an open source memory storage and retrieval system built for NodeJS projects. It addresses the need to share and persist information across LLM chat sessions and other LLM feature interactions.

Key Features and Implementation

The system works by ingesting and automatically extracting "memories" from LLM interactions. These memories are summarized single bits of information that get vectorized for storage.

When you need to provide relevant context back to an LLM (before a new chat session starts or after user requests), you pass conversation context to the recall method. An LLM then searches the vector store and returns only the most relevant memories.

This approach prevents context size issues as history and memory count grows while ensuring the LLM always has access to important context.

Ad

Built-in Support and Development

  • Supports major LLMs: GPT, Gemini, and Claude
  • Integrates with major vector store providers: Weaviate and Pinecone
  • Includes a developer UI sandbox for testing
  • Features a deduping system and configurable components
  • Unit tests were coded using Claude Opus

The creator designed it with low barrier to use in mind, making it easy to integrate into existing NodeJS projects.

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also