Open Source AI Memory Storage for NodeJS Projects

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.
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
👀 See Also

Meeting Summarization on a 6GB GPU: qwen3.5:0.8B Works at 57s, Granite 4 350M Hallucinates
VoiceFlow v1.6.0 adds local meeting recording and summarization. Benchmarking sub-1B models on a 6GB RTX 3060: qwen3.5:0.8B produces structured summaries in 57s at 2.2GB VRAM, while Granite 4 350M hallucinates badly.

OpenJet v0.4: Zero-Config Local Coding Agent with llama.cpp Backend
OpenJet v0.4 is an open-source terminal coding agent for local LLMs that auto-detects hardware, configures llama.cpp, and provides a Claude Code-style workflow with no API keys.

IronBee: Open-source verification layer for Claude Code and Cursor
IronBee is an open-source verification layer that forces AI coding agents to test changes in a real browser before completing tasks. In testing, it caught bugs in 82% of Claude Code sessions that would have shipped without verification.

MCP Server Enables AI Agents to Make Real Purchases with Ephemeral Virtual Cards
A developer has built an MCP server that allows AI agents to complete real purchases using ephemeral virtual Visa cards issued just-in-time. The system requires user approval via MFA and issues cards locked to specific merchants with 15-minute TTLs.