BrainMemory-MCP
A Model Context Protocol (MCP) server that gives AI/LLM agents a durable brain memory — the ability to store, recall, search, connect, summarize, and forget information across sessions through standardized MCP tool calls.
Since v0.4.0 memory is modelled internally as a small knowledge graph:
- memories are the graph nodes (content, category, tags, importance),
- connections are directed links between memories (e.g.
related_to,caused_by,part_of), - details are extra facts attached to a single memory.
This makes recall precise — instead of only matching words, the server can walk the connections you build (multi-hop recall) and explain how two memories relate (shortest path). The tool vocabulary stays "memory"-oriented (no "entity" wording), and it is still just SQLite under the hood — zero extra dependencies.
The server runs in two modes:
- stdio (default) — the server is launched as a subprocess by an MCP
client (e.g. via
uvx brainmemory-mcp). - web — MCP over HTTP + Server-Sent Events (SSE) with
--web, so remote MCP-capable clients (Claude, IDE agents, etc.) can connect over the network.
Memory is persisted locally under ~/.brainmemory-mcp (a SQLite database).
Cognitive Tools
Core memory
| Tool | Description |
|---|---|
store_memory |
Persist a new memory (content, category, tags, importance). |
recall_memory |
Fetch a memory by id, with its details and connections. |
search_memory |
Search-engine style: rank memories by relevance (BM25) for multi-word/long queries; also searches details; optional graph expand. |
list_memories |
List stored memories (most important & recent first). |
update_memory |
Modify an existing memory (only supplied fields change). |
forget_memory |
Delete a memory (its details and connections cascade away). |
summarize_memories |
Summary statistics: totals, categories, top tags, connection stats, most-connected memories. |
Graph memory
| Tool | Description |
|---|---|
add_detail |
Attach an extra fact/observation to an existing memory. |
link_memories |
Connect two memories with a directed relation (+ weight). |
unlink_memories |
Remove connection(s) between two memories. |
recall_related |
Multi-hop recall: memories connected to one memory, up to depth hops. |
connect_memories |
Shortest connection (path) between two memories. |
memory_map |
Return a map (nodes + links) of the memory graph. |
Bulk operations (since v0.8.0)
One call instead of many round-trips: each bulk tool takes a list of
per-item dicts and never aborts on a single bad item — every item gets its
own status ("stored"/"updated"/"linked"/... , "not_found", or
"error") in the response, alongside an overall count.
| Tool | Bulk equivalent of | Item shape |
|---|---|---|
store_memories |
store_memory |
{content, category?, tags?, importance?} |
recall_memories |
recall_memory |
list of memory_ids (+ include_connections flag) |
update_memories |
update_memory |
{memory_id, content?, category?, tags?, importance?} |
forget_memories |
forget_memory |
list of memory_ids |
add_details |
add_detail |
{memory_id, content} |
link_memories_bulk |
link_memories |
{from_id, to_id, relation?, weight?} |
unlink_memories_bulk |
unlink_memories |
{from_id, to_id, relation?} |
Example — store three memories and link two of them, in two calls instead of five:
// store_memories
{"items": [
{"content": "Nginx reverse proxy config lives in /etc/nginx/sites-available/app.conf", "category": "infra", "tags": ["nginx"]},
{"content": "Certbot auto-renews SSL at 3am via cron", "category": "infra", "tags": ["ssl"]},
{"content": "DNS for app.example.com points to 203.0.113.10 via Cloudflare", "category": "infra"}
]}
// link_memories_bulk (using the ids returned above)
{"links": [
{"from_id": "<id-1>", "to_id": "<id-2>", "relation": "depends_on"},
{"from_id": "<id-1>", "to_id": "<id-3>", "relation": "depends_on"}
]}
Two read-only resources are exposed as JSON: brainmemory://stats (the summary)
and brainmemory://graph (the nodes + links map).
Search (like a search engine)
search_memory no longer needs a single keyword. It tokenises your query and
ranks memories by relevance, so full sentences work:
- Full-text + BM25 — a SQLite FTS5 index over content/tags/category/
details (kept in sync by triggers), ranked with BM25. Multi-word / long
queries match memories containing any (or, with
mode="all", every) term, with prefix + Porter stemming (syncmatchessyncing). - Graph spreading activation — with
expand=True(default), memories connected in the knowledge graph to a text hit are pulled in with a decayed score, so related context surfaces even without the query words. - Ranking blends text relevance with importance and recency. Each result
carries
relevance(0..1),match_type(text|related|list),matched_terms, anddistance(hops from a text hit). - Fallback — where a SQLite build lacks FTS5, search degrades to a tokenised
LIKEterm-coverage scorer, so it always works.summarize_memoriesreports the active engine (fts5-bm25orlike-fallback).
Example: search_memory("Burp Firefox proxy sync") returns the relevant
memories ranked, plus anything linked to them — in a single call.
Install
From PyPI:
python3 -m pip install brainmemory-mcp
From a local checkout:
python3 -m pip install .
Both install the package and a console script named brainmemory-mcp.
For development (editable install):
python3 -m pip install -e ".[dev]"
To build/publish a release, see docs/RELEASING.md.
Run
stdio mode (default)
Best for local MCP clients that launch the server themselves. Memory in
~/.brainmemory-mcp.
brainmemory-mcp
# Or without the console script
python3 -m brainmemory_mcp
# With a custom memory location
brainmemory-mcp --data-dir /path/to/memory
Web mode (HTTP + SSE)
Enable with --web for remote / networked clients.
# Defaults: 127.0.0.1:8765, memory in ~/.brainmemory-mcp
brainmemory-mcp --web
# Custom host/port and memory location
brainmemory-mcp --web --host 0.0.0.0 --port 9000 --data-dir /path/to/memory
Endpoints once running in web mode:
- SSE stream:
http://<host>:<port>/sse - Message POST:
http://<host>:<port>/messages/
Configuration
| Option | Env var | Default |
|---|---|---|
--web |
BRAINMEMORY_WEB |
false (stdio) |
--host |
BRAINMEMORY_HOST |
127.0.0.1 |
--port |
BRAINMEMORY_PORT |
8765 |
--data-dir |
BRAINMEMORY_HOME |
~/.brainmemory-mcp |
Connect a client
stdio (recommended for local use)
Configure the client to launch the server as a subprocess:
{
"mcpServers": {
"brainmemory": {
"command": "uvx",
"args": ["brainmemory-mcp"]
}
}
}
If installed on your PATH, you can use "command": "brainmemory-mcp" with
"args": [] instead.
Web (SSE)
Start the server with --web, then point an SSE-capable client at the /sse
endpoint:
{
"mcpServers": {
"brainmemory": {
"url": "http://127.0.0.1:8765/sse"
}
}
}
How memory is stored
Memories live in ~/.brainmemory-mcp/memory.db (SQLite, WAL mode) across three
tables:
memories— nodes:id,content,category,tags,importance(1–5),created_at,updated_at.memory_details— extra facts attached to a memory (cascade-deleted with it).memory_links— directed connectionssource_id -> target_idwith arelationandweight(cascade-deleted with either endpoint).
Search uses a SQLite FTS5 full-text index (memories_fts, kept in sync by
triggers) ranked with BM25, augmented by graph spreading activation. Graph
operations (multi-hop recall_related, shortest-path connect_memories, degree
centrality in summarize_memories) are computed with plain SQL + a little
Python — no external services or vector database required.
Nothing is ever silently deleted — removal only happens through
forget_memory, unlink_memories, or detail deletion. When an older
database is opened that lacks the newest schema (the graph tables or the FTS
index), it is backed up automatically to ~/.brainmemory-mcp/backups/
before the new objects are added.
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file brainmemory_mcp-0.8.0.tar.gz.
File metadata
- Download URL: brainmemory_mcp-0.8.0.tar.gz
- Upload date:
- Size: 28.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
468ecb97861fe633056f27ca269d939bba15094d4539e13e1576fa4e73e34ace
|
|
| MD5 |
a097d4fbf95d30e99b6422944494efb7
|
|
| BLAKE2b-256 |
e48691c5fc51b5facb6d33b69ad894130c0764b4d07543df3152e531a3a46355
|
File details
Details for the file brainmemory_mcp-0.8.0-py3-none-any.whl.
File metadata
- Download URL: brainmemory_mcp-0.8.0-py3-none-any.whl
- Upload date:
- Size: 26.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bceda66f846244d73df83320aa36321eeb54eacfb9ab55ada5021e70ab0a5d41
|
|
| MD5 |
5b82b6615309b47dc714ba5e99a1bcbf
|
|
| BLAKE2b-256 |
c434f5247b6b1f9588d4b7c076024ef842a0d548796347a5409615ee76405d34
|