← Reddit

Vector memory for you and Claude — now in Persephone (free & open source)

Reddit · StorageThese9556 · June 16, 2026
Persephone is a free, open-source Windows developer notepad that features Mneme, a local-first vector memory system designed to integrate with Claude. The system indexes Markdown note folders locally using SQLite FTS5 with on-device ONNX embeddings, providing hybrid full-text and semantic search capabilities through MCP tools while maintaining complete privacy by keeping all data on the user's machine.

Detailed Analysis

Persephone, a free and open-source Windows developer notepad built on Electron and Monaco, has introduced a significant new feature called Mneme — a local-first vector memory system designed to give Claude persistent, private knowledge across sessions. The system works by indexing user-specified folders of Markdown notes directly on the local machine, using SQLite FTS5 and sqlite-vec for storage alongside on-device int8 ONNX embeddings that run entirely on the CPU. The result is a hybrid full-text and semantic search capability exposed via the Model Context Protocol (MCP), allowing Claude Desktop and Claude Code to read, write, and edit files within that knowledge base as though it were a native memory layer. A dedicated UI within Persephone allows users to browse their indexed knowledge base, manage root directories, and monitor indexing progress in real time.

The significance of this development lies primarily in its approach to the persistent memory problem — one of the most frequently cited limitations of large language model assistants like Claude. Because LLMs operate statelessly across sessions by default, users must repeatedly re-establish context, which degrades productivity and limits the depth of long-term collaboration. Mneme addresses this by creating a structured, queryable repository of user knowledge that Claude can access on demand through MCP tool calls, effectively simulating continuity of memory without requiring any cloud infrastructure or external API. The project's explicit commitment to local-only processing — "nothing leaves your machine" — directly responds to the privacy concerns that have made many professionals reluctant to integrate AI assistants into sensitive or proprietary workflows.

The technical architecture of Mneme reflects a broader and rapidly accelerating trend in the AI tooling ecosystem: the commoditization of semantic search through lightweight, on-device embedding models. The use of int8-quantized ONNX models for CPU-only inference is a deliberate tradeoff that sacrifices some embedding quality for near-universal hardware compatibility, ensuring the system runs without a GPU or cloud dependency. This mirrors similar design choices seen in projects like LM Studio, Ollama, and various local RAG (Retrieval-Augmented Generation) frameworks that have proliferated since 2023, all aimed at making sophisticated AI capabilities accessible without requiring specialized hardware or paid cloud services.

Persephone's integration with MCP is particularly noteworthy in the context of Anthropic's broader ecosystem strategy. MCP, which Anthropic introduced as an open standard for connecting AI models to external tools and data sources, has become the connective tissue for a growing community of third-party integrations. Projects like Persephone demonstrate that the MCP ecosystem is maturing beyond enterprise and developer-tool integrations into personal productivity and knowledge management applications, effectively democratizing capabilities that previously required purpose-built enterprise software. The fact that Mneme exposes not just read but also write and edit tools over MCP suggests a vision of Claude as an active collaborator in a user's knowledge base, not merely a passive reader of it.

Taken together, Persephone and its Mneme feature represent a concrete and technically grounded contribution to the emerging category of "personal AI infrastructure" — tools that extend the capabilities of foundation models like Claude through local, user-controlled data layers rather than centralized platforms. As AI assistants become more deeply embedded in knowledge work, the ability to maintain private, persistent, and semantically rich memory without surrendering data to third parties will likely become a defining competitive dimension. Open-source projects that solve this problem accessibly and transparently, as Persephone attempts to do, are positioned to play an outsized role in shaping how individuals — particularly developers and knowledge workers — integrate AI into their daily workflows.

Read original article →