Second Brain for AI - Persistent memory for Claude, ChatGPT & Cursor. Free.
by•
Every AI conversation starts from zero. Your projects, decisions, and preferences disappear as soon as you close the chat. Second Brain fixes that. It is a self-hosted memory layer that works with Claude, ChatGPT, Cursor, and any MCP client. You can store context once and recall it by meaning instead of keywords. It includes duplicate detection, semantic search, and a web UI. Built on Cloudflare, it offers a free tier and your data remains yours. MIT licensed.


Replies
Calling Clones
Second question! ( I separate it so you get more engagement! haha)
Could I connect this to a Raspberry Pi voice "flat mate" and use it as a shared memory layer?
So I can access to all my ChatGPT memory with that home device too?
Second Brain for AI
The maker already shipped a CLI since launch — that’s useful signal. What’s the upgrade path for that CLI in terms of keeping it in sync with the web UI? Does it write to the same memory store, or does it maintain a separate local cache that could drift?
Second Brain for AI
QuickSheet
This is a very helpful product.
Second Brain for AI
@sreehari_s5 thanks for the support!!!
Second Brain for AI
Two things shipped this week worth flagging.
@phillipadsmith opened a PR adding OAuth 2.0 support to the /mcp endpoint... that's now merged.
And @anand_thakkar1, you flagged during launch that importance score should factor into merge and delete decisions, not just similarity. That's in too. Smart merge now uses importance as part of the signal, so high-value memories don't get quietly overwritten by a slightly similar throwaway entry.
Both came directly from this community. Appreciate it.
If you want these now, clone or fork main. Otherwise they'll be packaged in v1.7 next week.
The 'every conversation starts from zero' problem is real — I waste so much time re-explaining project context to Claude Code every new session. Self-hosted is a big plus for me. Curious about the MCP integration — does it expose memory as a tool that the LLM can call dynamically, or is it more of a pre-prompt injection layer?
Second Brain for AI
Semantic search over a personal memory layer is the right primitive here. Building on Cloudflare Workers keeps data distributed with low latency globally. With the self-hosted model and MIT license, is the vectorization step handled via Cloudflare AI bindings, or does it call out to an external embedding API?
Second Brain for AI
@dhiraj_patel5 Vectorization is handled entirely via Cloudflare Workers AI bindings, no external embedding API calls. When you store a note, the Worker calls the @cf/baai/bge-base-en-v1.5 model through Workers AI to generate the embedding, then writes it to Cloudflare Vectorize for semantic search. D1 stores the raw text alongside it.
The whole stack: Workers (runtime), D1 (persistence), Vectorize (vector search), Workers AI (embeddings + LLM inference). Zero external dependencies. Everything runs inside your own Cloudflare account on the free tier.