Hebbian memory for AI agents. Learns file patterns, predicts next tools, saves tokens.
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-thebasedcapital-brainbox-thebasedcapital": {
"args": [
"-y",
"brainbox-hebbian"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Hebbian memory for AI coding agents. Learns which files you access together, which errors lead to which fixes, and which tool chains you use most — then recalls them instantly.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'brainbox-hebbian' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked brainbox-hebbian against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / communication
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
An open-source AI agent that brings the power of Gemini directly into your terminal.
Lightweight core CLI surface for Claude Flow — memory + hooks commands only. Designed to load fast on cold npx cache (<5s) so plugin skills don't race the 30s MCP-startup timeout. The full @claude-flow/cli metapackage lazy-loads everything else on top of
MCP Security Weekly
Get CVE alerts and security updates for io.github.thebasedcapital/brainbox and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Hebbian memory for AI coding agents. Learns which files you access together, which errors lead to which fixes, and which tool chains you use most — then recalls them instantly.
Not a vector database. Not RAG. Procedural memory.
If BrainBox saved you tokens, give it a star — it helps others find it. Built by @thebasedcapital
Session 1: agent greps for auth.ts, reads it, edits it (2000 tokens)
Session 5: agent recalls auth.ts directly, skips search (500 tokens saved)
Session 20: auth.ts is a superhighway — instant recall, zero search cost
npm install brainbox-hebbian
That's it. The postinstall script automatically:
PostToolUse hook to ~/.claude/settings.json (learns from every file read/edit/search)UserPromptSubmit hook (injects neural recall into prompts automatically)claude mcp add (6 tools for manual recall/recording)~/.brainbox/ database directoryBrainBox learns passively from your next Claude Code session. No configuration needed.
The macOS daemon (system-wide FSEvents file watcher) is completely separate and opt-in:
# Only if you want BrainBox to learn from VS Code, Xcode, vim, shell, etc.
brainbox daemon install # installs LaunchAgent, starts watching
brainbox daemon status # check if running
brainbox daemon uninstall # remove completely
The daemon watches file changes across all your editors — not just Claude Code. It requires explicit opt-in because it registers a LaunchAgent and monitors your configured project directories.
brainbox uninstall # removes hooks + MCP server, preserves database
Kill cold start by bootstrapping from your existing git history:
brainbox bootstrap --repo /path/to/project --imports
This seeds the neural network from git commit co-changes and import graphs so BrainBox starts with knowledge instead of from zero.
BrainBox implements neuroscience-inspired learning:
https://github.com/thebasedcapital/brainbox/raw/main/assets/brainbox-animation.mp4
https://github.com/thebasedcapital/brainbox/raw/main/assets/brainbox-spreading.mp4
https://github.com/thebasedcapital/brainbox/raw/main/assets/brainbox-superhighway.mp4
https