npm @br8n/mcpstdioMITupdated 15d ago
Owned, portable working memory. A plain-files brain template and a tiny MCP server that lets any model read it.
What can you do with br8n?
br8n
Owned, portable working memory. A plain-files brain template and a tiny MCP server that lets any model read it.
Everything your team has taught a chat tool about how the work gets done is sitting inside somebody else's login. Switch tools and you're a stranger again. This repo is the other direction: the memory lives in files you own, and the model is just a reader.
br8n is the AI delivery practice of Branded Mayhem Collective. This is the open part: the file layout and the door. The hosted install adds retrieval, governance, and someone running it with you — on the same files, which never change shape. br8n.io
What's here
template/brain/— the brain layout:how-we-work/,decisions/,exceptions/,handoffs/,voice/. Markdown only. One file, one thing. Write the why, so the model can push back later.src/— an MCP server (stdio) with three tools:brain_list,brain_read,brain_search. Search returns file + line so answers cite their source. No vectors, no index, no account. Grep is the point.
Use it
npx @br8n/mcp ~/my-brain # MCP server on stdio (or: npm i -g @br8n/mcp && br8n ~/my-brain)
# template: git clone https://github.com/Branded-Mayhem-Collective-LLC/br8n && cp -r br8n/template/brain ~/my-brain
Claude Desktop / Claude Code / Cursor (any MCP client) — add:
{ "mcpServers": { "br8n": { "command": "npx", "args": ["-y", "@br8n/mcp", "/path/to/my-brain"] } } }
Then ask the model something the brain knows. It answers from the file and names it. Switch the model; same answer, same file.
Why files
- Portable.
cp -r brain/ new-machine/is the whole migration. If you can't do that, you don't own it. - Inspectable. You can read every byte the model reads.
- Model-agnostic. The folder doesn't care which model is on the other side of MCP.
- It can push back. A decision stored with its why lets a model say "this conflicts with what you decided in March." A chat history can't.
The method is public on purpose
The layout and this server are MIT. What br8n charges for is hands on a real operation: eliciting what's actually in people's heads, shaping retrieval for the role, running it, and keeping it current. If you'd rather do it yourself, start here — most people should. The free first course is at br8n.io/lab.
Not affiliated
br8n on PyPI (a context-capture engine by a different author) is not this project.
MIT © 2026 Branded Mayhem Collective LLC
Publishing (maintainers)
Configure npm's trusted publisher once for @br8n/mcp:
- Publisher: GitHub Actions
- Organization:
Branded-Mayhem-Collective-LLC - Repository:
br8n - Workflow:
publish.yml - Allowed action:
npm publish
Publish the version already committed to main, then update the official MCP Registry:
gh workflow run publish.yml --ref main -f version=0.1.2
gh run watch --exit-status
mcp-publisher login github
mcp-publisher publish
The GitHub-hosted workflow uses npm trusted publishing (OIDC), so it requires no long-lived npm token. Change the version argument for future releases.
Install
Add br8n to your client. Pick the one you use.
claude mcp add mcp -- npx -y @br8n/mcpcodex mcp add mcp -- npx -y @br8n/mcpamp mcp add mcp -- npx -y @br8n/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@br8n/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@br8n/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp","command":"npx","args":["-y","@br8n/mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@br8n/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@br8n/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@br8n/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@br8n/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@br8n/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @br8n/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 7 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.2Latest | Aug 24, 2026 |
| 0.1.1 | Aug 19, 2026 |