.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/m3talux/superbrain
home/mcp-servers/m3talux/superbrain
m3talux avatar

superbrain

bym3talux· 1 MCP server

Installs

31

Stars

32

Forks

2

Category

Agent Meta & Communication

View on GitHub

TL;DR

Automatic Claude Code -> Obsidian second brain: zero-config session capture, hybrid search, autonomous recall, daily/lessons/preferences.

How to install superbrain?

m3talux/superbrain
$git clone https://github.com/m3talux/superbrain

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install superbrain by running `git clone https://github.com/m3talux/superbrain`, then use it for the current task and follow its documentation at https://github.com/m3talux/superbrain.

Files · 1

View on GitHub
README.md
1<div align="center">
2 
3# 🧠 SuperBrain
4 
5**Session memory for Claude Code — a second brain that builds itself.**
6 
7Every Claude Code session — across every project, on every machine — is captured into a plain Obsidian markdown vault you fully own. Zero config, no LLM of its own, no cloud. SuperBrain observes the sessions you're already running and writes the journal you never have time to.
8 
9[![License: MIT](https://img.shields.io/badge/License-MIT-black.svg)](LICENSE)
10[![Node](https://img.shields.io/badge/node-%E2%89%A520-black.svg)](package.json)
11[![CI](https://github.com/m3talux/superbrain/actions/workflows/ci.yml/badge.svg)](https://github.com/m3talux/superbrain/actions/workflows/ci.yml)
12[![Storage](https://img.shields.io/badge/storage-plain%20Obsidian%20markdown-blueviolet.svg)](#vault-structure)
13[![Works with Obsidian](https://img.shields.io/badge/works%20with-Obsidian-7c3aed.svg)](https://obsidian.md)
14 
15</div>
16 
17---
18 
19> **Status:** in active development. Interfaces and behavior may change before a tagged release.
20 
21## Why
22 
23Every Claude Code session ends and the reasoning vanishes. Decisions, trade-offs, the "we tried X and it didn't work" history — gone with the terminal scrollback. CLAUDE.md fixes the *rules*; SuperBrain fixes the *journal*. The Claude Code memory ecosystem has split in two, and neither half is what you actually want:
24 
25- **Automatic but opaque** (claude-mem, mcp-memory-service): great zero-config capture, but it lives in a SQLite/Chroma blob you can't browse, edit, or own.
26- **Obsidian but manual** (basic-memory, claudesidian, obsidian-second-brain): a beautiful markdown vault, but *you* have to remember to run commands or hope the model decides to call a tool.
27 
28**No mature tool does all of:** globally installed → automatic capture → into a plain Obsidian vault → with incremental daily notes → that you fully own and can `git`-sync. SuperBrain is that missing bridge.
29 
30This isn't vibes: ~23 prior-art projects and the current Claude Code platform were surveyed, and every architectural decision was challenged before a line was written.
31 
32## Quick start
33 
34```text
35# In Claude Code:
36/plugin marketplace add m3talux/superbrain
37/plugin install superbrain
38```
39 
40That's it. On the **first session** the plugin runs a one-time setup (installs its
41search dependencies in the background) and tells you it's doing so; capture is
42fully active from the next session. SuperBrain writes to its own vault at
43`~/.superbrain/vault` — a fixed, predictable location with no environment
44variables to set. Point Obsidian at that folder and you're done.
45 
46If you already have an Obsidian vault you want to bring along, see
47[Vault setup](#vault-setup) below — `/superbrain:migrate` is the preferred path.
48 
49Installed at **user scope**, the plugin's hooks register for *every* project automatically — there is nothing else to do, ever.
50 
51> If SuperBrain saves you context, please star ⭐ — it's the only signal we have.
52 
53## Supported platforms
54 
55- **macOS** — Apple Silicon + Intel. CI-tested.
56- **Linux** — Ubuntu 22.04+ verified; other distros likely fine. CI-tested.
57- **Windows** — native Windows support is in progress: the cross-platform
58 spawn wrapper, path-separator handling, and platform-aware bootstrap hints
59 are in place, but the test suite is not yet fully Windows-portable and
60 Windows isn't on the CI matrix. See
61 [Install troubleshooting](#install-troubleshooting) for the first-install
62 failure modes and the fixes.
63 
64Tested on Node 20 LTS and Node 22.
65 
66## How it works
67 
68```mermaid
69flowchart LR
70 A[Tool use / prompt] -->|PostToolUse, UserPromptSubmit<br/>async, no LLM| B[NDJSON log<br/>+ salient markers]
71 B --> C{Checkpoint?<br/>PreCompact / SessionEnd /<br/>Stop if pending}
72 C -->|detached, lock-serialized| D[sb-distill<br/>claude -p]
73 D --> E[Router]
74 E --> F[(Obsidian vault<br/>notes only)]
75 D -.->|incremental rebuild| I[Daily note for today]
76 I --> F
77 C -.->|byte cursor| B
78```
79 
801. **Observe** — `PostToolUse` / `UserPromptSubmit` hooks append a compact event line to a per-session NDJSON log. **No LLM** on this path, so it can never rate-limit, stall, or disrupt your turn.
812. **Pin salience** — a deterministic scorer drops a structured marker into the log at the moments that matter (a commit, a file-churn spike, a context switch), so the later summary is anchored to *what happened* instead of re-derived from noise.
823. **Distill at checkpoints** — at `PreCompact`, `SessionEnd`, or a pending-gated `Stop`, one detached, lock-serialized `claude -p` reads the delta since a byte-offset cursor, classifies it, and writes routed notes via an in-process vault writer.
834. **Update the day's journal** — each distill incrementally rebuilds today's `daily/<date>.md` from the per-session state (digest line + routed-note links + threads). Deterministic concat, no extra LLM call.
84 
85## Features
86 
87**Capture**
88 
89- ✅ Globally installed, zero per-project setup, **no API key** (reuses your Claude Code auth)
90- ✅ **One-shot project discovery** on first

Preview

m3talux/superbrainm3talux/superbrain
Repom3talux/superbrain
TypeMCP Servers
CategoryAgent Meta & Communication
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPagent-memoryai-memory

Related

6 picks
Type
  1. cdeust avatarcortexScientifically-grounded persistent memory for Claude — local-first, hybrid retrieval, 72 references.MCP ServersJul 20262.7k68
  2. samanhappy avatarmcphubA hub server for mcp serversMCP ServersJul 20262.7k2.3k
  3. loonghao avatarwecom-bot-mcp-serverWeCom Bot MCP Server - A Python server for WeCom (WeChat Work) bot following the Model Context Protocol (MCP)MCP ServersJul 20262.5k98
  4. toolprint avatarhypertool-mcpDynamically expose tools from proxied servers based on an Agent PersonaMCP ServersOct 20252.0k155
  5. arindam200 avatarreddit-mcpReddit MCP ServerMCP ServersDec 20252.0k296
  6. raysonmeng avataragent-bridgeBridge between Claude Code and Codex — bidirectional agent communication via MCP Channel + JSON-RPCMCP ServersJul 20261.8k270