Brain
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Brainsearch my session history for the RAG bug"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Brain
Your team already wrote the missing manual. It is sitting in agent chats.
Brain turns Claude Code, Codex, and Cursor sessions into a shared, searchable memory. A new teammate can ask why a system works this way. An agent can find the old investigation instead of repeating it. The useful context can span the whole history of a Git organization, including decisions that never made it into a document.
Deploy Brain once. Put it on your Tailnet. Point any stateless MCP client at /mcp. Search needs no Brain package,
token, browser login, or custom client. It works well from Code Mode because the MCP tools are small data operations and
the agent can combine them in a REPL.
Brain is open source and cloud-neutral. AWS, another cloud, or one machine all work.
What feels different
Tailscale is the default front door. People use the identity they already have on the private network.
Search and reading are remote, stateless MCP calls. There is nothing to install on each reader's machine.
Sharing stays deliberate. The local exporter shows the repository, source, dates, and session count before upload.
Repository scope comes from the saved session directory's Git
origin, not its folder name.Claude Code, Codex, Cursor, subagents, archived Codex sessions, and recorded Codex Desktop side chats are supported.
Repeated text is stored once with SHA-256 content-addressed storage. Uploads send only missing sessions and bodies.
Admins can inspect bounded, redacted request records without storing raw query text or upload bodies.
Related MCP server: Trapic Core
Run it
uv is the default way to build, test, and run Brain.
git clone https://github.com/sdrshn-nmbr/brain
cd brain
cp .env.example .env
# Edit the repository, Tailnet host, admin login, and app-capability domain.
docker compose up -d
tailscale serve --accept-app-caps=example.com/cap/brain 8788Then point a remote MCP client at:
https://brain.your-tailnet.ts.net/mcpTailscale Serve adds the caller identity and strips spoofed identity headers. Keep Brain's published port on host loopback and do not expose its plain HTTP port. See authentication and deployment.
Search without a client install
The server exposes search, browse, read_session, and stats as normal MCP tools. Add the URL to Claude Code,
Codex, Cursor, OpenCode, or another remote MCP client. Code Mode can call those tools from its own REPL; it does not need
the Brain Python package.
Publishing is the one local step. The server cannot read ~/.claude, ~/.codex, or Cursor's local databases. Run the
publisher once through uv without installing it:
uvx --from git+https://github.com/sdrshn-nmbr/brain@v1.1.0 brain-sync \
--endpoint https://brain.your-tailnet.ts.net/mcp \
--repository github.com/example/widget \
--visibility "Example engineering" \
--dry-runThe dry run writes a local archive but sends no transcript data. Read the printed scope, then publish that exact archive:
uvx --from git+https://github.com/sdrshn-nmbr/brain@v1.1.0 brain-sync \
--endpoint https://brain.your-tailnet.ts.net/mcp \
--archive "$HOME/Downloads/agent-chats-export-<timestamp>.zip"Brain asks before upload. Use --yes only after a person or approved automation has accepted that exact scope.
Codex Desktop side chats
Codex does not always put complete Desktop side chats in its normal session files. Brain includes a small opt-in proxy
that records future side-chat prompts, assistant replies, and tool events under
~/.codex/attachments/sidechats/*.jsonl:
uvx --from git+https://github.com/sdrshn-nmbr/brain@v1.1.0 brain-sidechat-recorder --install-hook
export CODEX_CLI_PATH="$HOME/.codex/bin/brain-sidechat-recorder"Start Codex Desktop from an environment containing that variable. The hook is local and contains only Python standard
library code. Recording failure never blocks Codex. These files can contain sensitive tool data. Brain uploads a
recorded side chat only when its saved working directory resolves to an allowed repository and the user confirms the
archive. Arbitrary files from ~/.codex/attachments are never uploaded.
Scope and access
Scope is checked by the exporter, upload server, and ingester. Repository IDs include the Git host, such as
github.com/acme/api or gitlab.example.com/platform/models/recommender.
Tailnet users get append access by default. Named admins get observability tools. Tagged workloads need a Tailscale app capability and stay read-only. The included policy templates show read, append, and admin grants for fine-grained access. Bearer tokens and trusted proxy headers remain explicit alternatives.
Why SQLite
The current bottlenecks were query shape, archive packaging, and connection reuse. After those fixes, local SQLite FTS search is fast and the single-writer design stays easy to operate. Brain keeps reads online during atomic ingestion and uses a separate append-only object database for deduplicated bodies.
Possible future directions:
A Turbopuffer backend for lexical search, vector search, and other indexes, with S3 for session bodies.
Hybrid semantic and full-text ranking.
Postgres or Turso when a deployment needs several writers or a managed database.
Go, Rust, async pipelines, or SIMD JSON parsing if profiles show CPU parsing is the next real limit.
These are options, not required complexity.
Develop
uv sync --frozen
just checkjust check runs Ruff, ty, the full test suite, and package build. Brain uses Pydantic models at its MCP boundary and
checks them with ty's Pydantic-aware type analysis.
The service uses one writable process and one persistent data directory. See architecture for the storage and consistency rules.
Apache-2.0. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceAn MCP server that indexes Claude Code conversation history into SQLite, enabling full-text search across past sessions for context recovery and cross-agent observability.103MIT

Trapic Coreofficial
AlicenseNot gradedqualityDmaintenanceSelf-hosted MCP server for long-term memory in AI coding assistants, capturing decisions, conventions, and discoveries as structured traces with tag and keyword search.2MIT
threadctx-mcpofficial
AlicenseAqualityBmaintenanceShared memory MCP server for AI coding agents, enabling context sharing across sessions with local SQLite or cloud-based semantic search, compatible with Claude Code and Cursor.2661MIT
hive-memoryofficial
AlicenseNot gradedqualityBmaintenanceMCP server for personal and shared memory with full-text search (SQLite FTS5) and outcome tracking, compatible with any MCP agent like Claude Code, Cursor, and Codex CLI.18MIT
Related MCP Connectors
Hosted MCP memory: save sessions/decisions once, search from Claude, Cursor, ChatGPT. EU-hosted FTS.
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
Real-time chat hub for AI agents — Claude Code, Cursor, Cline, Codex over MCP or REST.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sdrshn-nmbr/brain'
If you have feedback or need assistance with the MCP directory API, please join our Discord server