SecondBrain
БесплатноНе проверенA local-first MCP server that provides a shared Markdown-based memory for AI coding agents, enabling cross-agent context persistence via tools like memory_searc
Описание
A local-first MCP server that provides a shared Markdown-based memory for AI coding agents, enabling cross-agent context persistence via tools like memory_search and memory_capture.
README
PyPI Python versions License: MIT MCP Stars
One shared, local-first memory for every AI coding agent you use.
Codex forgets what Claude Code learned. Cursor starts from zero on a project Antigravity has worked on for weeks. Each tool keeps its own history in its own private store, so you re-explain the same context over and over.
SecondBrain fixes that. Your memory is a plain Markdown vault plus a tiny MCP server. Every MCP-capable agent reads and writes the same notes, so context follows you across tools and machines.
Codex ─┐
Claude Code ─┤
Cursor ─┼──▶ SecondBrain MCP ──▶ ~/SecondBrain (Markdown + local index)
Antigravity ─┘ (memory_search, AI_CONTEXT/ 10_Projects/ 30_Knowledge/
your agent ─┘ memory_capture, ...) 40_Decisions/ 50_Conversations/ ...
- Local-first. Human-readable Markdown on your disk. No account required.
- Zero heavy deps. Core tools use only the Python standard library. Semantic search is optional and runs locally via Ollama.
- Shared by protocol. Any agent that speaks MCP joins automatically.
- Governed. A curated ontology plus
auditandevalcommands keep a long-lived memory from rotting.
Jump to: Why · Install · Tools · How it works · Why it's worth a star · Privacy · Layout
Why this exists
AI coding agents are getting genuinely useful, but their memory is siloed:
- Switch from one agent to another and you lose all accumulated context.
- The same preferences, decisions, and project state get re-typed constantly.
- There is no single place you own and can read, edit, and back up.
SecondBrain makes memory a file format + a protocol instead of a feature locked inside one app. See docs/comparison.md for how this differs from hosted memory services like Mem0 and Zep.
5-minute install
1. Install
pip install secondbrain-memory
(Optional) local semantic search:
# https://ollama.com — then:
ollama pull bge-m3
If you skip Ollama, set retrieval.semantic.enabled: false in your config and
SecondBrain runs keyword-only.
2. Create your vault
secondbrain init ~/SecondBrain
secondbrain index
This scaffolds the vault (with example notes you can delete) and writes a config
to ~/.config/secondbrain/secondbrain.yaml.
3. Connect your agents
# macOS / Linux
python3 install/install_unix.py
# Windows (PowerShell)
powershell -ExecutionPolicy Bypass -File install\install_windows.ps1
On macOS the harvester auto-schedules via a LaunchAgent; on Linux it uses a
systemd --user timer if systemctl is available. Both are optional and
controlled by automatic_capture.enabled in your config.
The installer registers the MCP server with each agent in your config and drops a shared-memory rule into each agent's global instructions. Restart your AI apps.
Prefer to wire one agent by hand? Point any MCP client at:
{
"mcpServers": {
"secondbrain": {
"command": "python3",
"args": ["-m", "secondbrain.mcp_server"],
"env": { "SECONDBRAIN_CONFIG": "/absolute/path/to/secondbrain.yaml" }
}
}
}
Or launch it with npx secondbrain-memory (the npm package is a thin launcher
for the Python server).
4. Verify
secondbrain health
secondbrain search "hybrid search" --top 3
What your agents can do
The MCP server exposes ten tools:
| Tool | Purpose |
|---|---|
memory_search |
Hybrid keyword + semantic search over notes and history |
memory_get |
Read a note or a historical catalog entry |
memory_related |
Traverse 1-2 ontology hops around a note |
memory_capture |
Save durable user/decision/project/knowledge/inbox memory |
memory_update |
Append a dated section to an existing note |
memory_recent |
Recent per-tool session logs |
memory_status |
Index and harvester status |
memory_rebuild |
Rebuild the index |
memory_audit |
Flag stale/duplicate/conflicting/unresolved memory |
memory_eval |
Report retrieval recall@k and MRR |
The same actions are available on the CLI: secondbrain search|index|audit|eval| harvest|backup|health|config.
How it works
- Vault (source of truth). Markdown notes under a PARA-style
layout. Notes carry lightweight frontmatter (
type,status, relations). - Index (derived, disposable). SQLite FTS5 for keywords + optional local
embeddings, fused with reciprocal rank fusion. Delete it any time; rebuild with
secondbrain index. - Ontology. A small relation vocabulary connects canonical notes; search results get a light boost from directly linked notes.
- Harvester. Optionally scans your local agent histories, redacts secrets, and builds a searchable, summary-only catalog — never full transcripts.
- Config. One
secondbrain.yamldrives everything: pointvault_rootanywhere and the whole toolchain follows.
Why it is worth a star — three differentiators
- Cross-agent by default. Memory lives in files + MCP, so Codex, Claude Code, Cursor, and Antigravity share one brain. Hosted memory services center on an SDK/backend your app calls; here, sharing is the starting point.
- Local-first and inspectable. The whole memory is Markdown you can
git diff, grep, and edit. Embeddings run on your machine. No service to run, no data leaving your laptop. - Governed, measurable memory. A curated ontology plus
audit(health) andeval(recall@k / MRR) treat memory quality as something you can verify — not just an ever-growing store.
Full detail: docs/comparison.md.
Screenshots & demo
Scripts to reproduce the README media live in docs/screenshots.md.
Privacy & safety
- Ordinary personal info is stored only if you opt in
(
privacy.ordinary_personal_information: allowed). - The MCP server and harvester refuse to store values that look like passwords, API keys, tokens, or private keys.
- Backups are AES-256 encrypted (
secondbrain backup). - The MCP server refuses to read or write outside your configured vault.
Repository layout
secondbrain-oss/
├── secondbrain.yaml # config (points at ./vault by default)
├── src/secondbrain/ # config-driven Python package
│ ├── config.py # the one place paths are resolved
│ ├── memory_index.py # FTS5 + embeddings + ontology
│ ├── memory_search.py memory_audit.py retrieval_eval.py
│ ├── harvest.py catalog.py backup.py health_check.py
│ ├── mcp_server.py # stdio MCP server (secondbrain-mcp)
│ ├── cli.py # the `secondbrain` command
│ └── template_vault/ # packaged copy used by `secondbrain init`
├── vault/ # the reference/demo vault (same as template)
├── install/ # install_unix.py (macOS + Linux), install_windows.ps1, adapters
├── bin/secondbrain-mcp.js # npx launcher
└── docs/ # comparison, screenshot script
Contributing
Issues and PRs welcome. Keep the core dependency-free, keep personal data out of
the repo, and run secondbrain eval before changing retrieval.
License
MIT.
Maintainer self-check: no personal data leaked
Run through this before every publish or release. This repository is a template; it must contain zero real personal or private information.
Automated scan (portable, no non-ASCII literals in the command itself)
# 1. ASCII personal tokens and absolute home paths. Expect NO matches.
grep -rInE "your-name|/Users/[a-z]|C:\\\\Users\\\\" \
--exclude-dir=.git --exclude-dir=node_modules --exclude-dir='*.egg-info' . \
|| echo "clean: no personal tokens"
# 2. Any CJK / non-Latin text (catches leaked non-English personal data).
# Reports files with runs of Hangul/Han/Hiragana/Katakana. Review each hit;
# only Unicode-range regex boundaries in *.py are expected.
python3 - <<'PY'
import os, re
pat = re.compile(r"[\uac00-\ud7a3\u3040-\u30ff\u4e00-\u9fff]{2,}")
for dp, dn, fn in os.walk("."):
dn[:] = [d for d in dn if d not in {".git", "node_modules"} and not d.endswith(".egg-info")]
for f in fn:
p = os.path.join(dp, f)
try:
for i, line in enumerate(open(p, encoding="utf-8"), 1):
if pat.search(line):
print(f"{p}:{i}: {line.strip()[:100]}")
except Exception:
pass
PY
Replace your-name with your actual name/handle when running this locally.
Manual checklist
- Does any file contain a real name (mine or anyone else's)?
- Does any file contain a real project, client, employer, or school name?
- Any CVE numbers, vulnerability research, or security-target details?
- Any absolute home paths (
/Users/<me>,C:\Users\<me>) or machine names? - Any real emails, phone numbers, student/employee IDs, or birthdays?
- Any API keys, tokens, passwords, cookies, or private keys (even fake-looking)?
- Are all example notes clearly fictional (Widget Store, Homelab, etc.)?
- Do config files point at generic paths (
./vault,~/SecondBrain)? - Are
vault/50_Conversations,00_Inbox,60_Imports,90_Archiveempty except for templates/.gitkeep, and ignored by.gitignore? - Do screenshots/GIFs show only the demo vault, no personal windows?
If any box is unchecked, do not publish until it is resolved.
Установить SecondBrain в Claude Desktop, Claude Code, Cursor
unyly install secondbrainСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add secondbrain -- npx -y github:no-carve-only-pizza/secondbrain-ossПошаговые гайды: как установить SecondBrain
FAQ
SecondBrain MCP бесплатный?
Да, SecondBrain MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для SecondBrain?
Нет, SecondBrain работает без API-ключей и переменных окружения.
SecondBrain — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить SecondBrain в Claude Desktop, Claude Code или Cursor?
Открой SecondBrain на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare SecondBrain with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
