rm-brain MCP server
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., "@rm-brain MCP serverWhat did I write about the conference session?"
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.
๐ง rm-brain
A local-first "second brain" for your handwritten reMarkable notebooks โ searched through a normal Claude Desktop conversation.
Built by Gabriel Anhaia ยท โ Buy me a coffee
The local web app โ dashboard ยท search ยท notebooks ยท page detail ยท entities. Fictional example data.
rm-brain quietly syncs the notebooks you drop into a Brain folder on your reMarkable, transcribes and classifies the handwriting with the Claude API, and stores everything in a local SQLite database. You then search and explore your notes as an ordinary conversation in Claude Desktop โ no separate app, no hosted service, using your existing Claude subscription.
You: "What did I decide about the Acme pricing model?" Claude: Pulls it from your notes and answers with receipts โ notebook name, page number, date, and the scanned page.
It's designed to feel less like a search box and more like a system that quietly organizes itself and surfaces things you forgot about.
Why it's different
Your handwriting, actually understood. Claude vision transcribes messy handwriting and diagrams far better than built-in OCR, and classifies each page (journal / meeting / idea / decision / โฆ), extracts people & projects, and flags open loops.
The interface is a conversation, not a dashboard. Search happens inside Claude Desktop via MCP โ you get a world-class chat UI for free.
Local-first and private by design. The database, page images, and manifest never leave your machine. See Privacy.
Answers with receipts. Every answer cites the notebook, page number, and date, and can show you the scanned page โ so you verify, not trust blindly.
Related MCP server: Claude RAG MCP Pipeline
How it works
flowchart TD
A["โ๏ธ reMarkable Cloud"] -->|"rmapi: list Brain folder ยท stat ยท get"| B["๐ฆ .rmdoc archive<br/>(.rm v6 vector files)"]
B -->|rmc| C["๐ผ๏ธ per-page SVG"]
C -->|rsvg-convert| D["๐๏ธ page PNGs"]
D -->|"Claude vision ยท 1 call/page"| E["โ๏ธ Extraction<br/>text ยท type ยท entities ยท open loops"]
E --> F[("๐๏ธ SQLite + FTS5<br/>~/.rm-brain")]
CLI["โจ๏ธ CLI<br/>sync ยท search ยท backup"] --> F
F <--> G["๐ MCP server"]
G <--> H["๐ฌ Claude Desktop"]
F --> W["๐ฅ๏ธ Web app<br/>browse ยท search (localhost)"]
classDef cloud fill:#e8f0fe,stroke:#4285f4,color:#1a1a1a;
classDef local fill:#e9f7ef,stroke:#27ae60,color:#1a1a1a;
classDef ai fill:#f3e8fd,stroke:#8e44ad,color:#1a1a1a;
class A cloud;
class B,C,D,F,CLI,W local;
class E,G,H ai;reMarkable notebooks are stored as proprietary .rm v6 vector files (not PDFs), so pages are
rendered with rmc + rsvg-convert. See
ARCHITECTURE.md for the full design.
๐ Privacy & safety
Local-first, always.
db.sqlite, page images, and the manifest live in one folder (~/.rm-brainby default) and never leave your machine as a whole.The only things that ever go over the network are (a) individual page images sent to the Claude API during
sync, and (b) individual queries + retrieved snippets sent through MCP while you search in Claude Desktop.Opt-in by folder. Nothing is indexed unless you put the notebook in your Brain folder.
The folder is the source of truth. Remove a notebook from it and the next
syncprunes it from your local index โ pages and images included.Hard exclusion always wins. A notebook whose name matches
/^\./,/private/i, or/noindex/iis skipped entirely, even inside the Brain folder โ and so is anything filed under a subfolder with such a name (e.g.Brain/private/โฆ).Read-only cloud access. rm-brain only ever reads from reMarkable (
list/stat/get); it never uploads or modifies anything.No telemetry. rm-brain phones home to nobody. See SECURITY.md.
Prerequisites
โ No jailbreak, rooting, developer mode, or SSH hacks โ ever. rm-brain works entirely through reMarkable's official cloud sync (via
rmapi). Your tablet stays completely stock, stock firmware, and under warranty. Nothing is installed on or modified on the device.
Tool | Why | Install |
Node.js 20+ | runtime | |
rmapi (ddvk | reMarkable Cloud CLI | ddvk/rmapi releases โ reMarkable's newer sync protocol returns HTTP 410 with older builds |
rmc | renders |
|
librsvg ( | SVG โ PNG |
|
Anthropic API key | handwriting extraction (used only during |
Quickstart
# 1. Install
git clone https://github.com/gabrielanhaia/remarkable-brain.git
cd remarkable-brain
npm install && npm run build
npm link # puts `rm-brain` on your PATH
# 2. Guided setup (pairs rmapi, saves your API key, wires Claude Desktop)
rm-brain setup
# 3. On the tablet: create a "Brain" folder, move a notebook in, let it sync
rm-brain sync
# 4. Fully quit & reopen Claude Desktop, then just ask it about your notesThe setup wizard checks your tools, pairs rmapi, prompts for your API key once and saves
it (to ~/.rm-brain/config.json, chmod 600 โ no re-export needed), helps you pick the
Brain folder, offers to run the first sync, and can write your Claude Desktop config
automatically. Re-run it anytime โ it's idempotent.
Usage
Once a notebook is indexed and Claude Desktop is connected, just talk to Claude:
"What are my open loops?" / "What did I forget to follow up on?"
"Search my notes for the Atlas pricing decision."
"How has my thinking on the onboarding flow evolved?" (entity timeline)
"Show me the page where I sketched the architecture."
Web interface
Prefer to see your notes? rm-brain ships a local-first, read-only web app โ an alternative way to browse and search your indexed notebooks and view the actual scanned handwriting in the browser. Its design is a quiet, fountain-pen-ink-on-fine-paper reading room that follows your system light/dark theme (scans always stay light paper, so handwriting never inverts). It complements the conversation, it doesn't replace it: asking questions still happens in Claude Desktop (over MCP); the web app is for seeing and searching.

Screens shown with fictional example data. Everything runs on your machine.
rm-brain web # builds nothing โ opens http://localhost:4123 in your browser
rm-brain web --port 8080 # pick a different port
rm-brain web --host 127.0.0.1 # bind address (localhost only, by design)
rm-brain web --no-open # don't auto-open the browserIt serves the Dashboard (counts + recent open loops and pages), typo-tolerant search โ partial words and small misspellings still match โ with filters (notebook, page type, open-loop only), a Notebooks grid grouped by reMarkable subfolder, per-page detail (scanned image side-by-side with the transcription), Open Loops, and Entity timelines.
Same guarantees as the rest of rm-brain: it binds 127.0.0.1 only, exposes GET endpoints only,
has no auth surface, and makes no outbound network calls. The frontend ships prebuilt (in
web/dist), so there's no build step for end users โ just run rm-brain web.
CLI reference
Command | What it does |
| Interactive setup wizard (start here) |
| Pull Brain-folder notebooks, render, extract, index |
| Re-extract all indexed pages (after a prompt/model change) |
| Full-text search from the terminal |
| Show indexed notebooks and page counts |
| Where the data lives + stats |
| Write a portable |
| Exclude (purges) / re-include a notebook |
| Delete the entire local index |
| Check dependencies |
| Start the MCP server (Claude Desktop runs this) |
| Open the local read-only web app to browse & search your notes ( |
Configuration
All config is via environment variables (env wins) or the saved store (~/.rm-brain/config.json).
Env var | Default | Purpose |
|
| Where all local data lives |
|
| reMarkable folder whose notebooks get indexed (case-insensitive) |
|
| Path/name of the rmapi binary (ddvk sync15 build) |
|
| Path/name of the rmc renderer |
|
| Path/name of rsvg-convert |
| โ | Required only for |
|
| Vision model for extraction |
Portability & backup
The whole index is one self-contained folder, so:
Back up:
rm-brain backup [dest.tar.gz], or just copy~/.rm-brain.Roam / auto-backup: point
RM_BRAIN_HOMEat a Dropbox/iCloud/Syncthing folder.Restore: extract the archive anywhere and point
RM_BRAIN_HOMEat it.
Troubleshooting
Your reMarkable account is on the newer sync protocol. Use the
ddvk sync15 build of rmapi (a release binary is
easiest), not the original juruen/rmapi. Then re-run rm-brain doctor.
Claude Desktop launches the MCP server once at startup and keeps it running. After any
rm-brain update, fully quit Claude Desktop (โQ, not just close the window) and reopen it
so it reloads the server.
Add a one-line personal instruction in Claude Desktop โ Settings โ Profile / Custom Instructions: "I keep my handwritten notes in rm-brain. For anything about my tasks, plans, or notes, use the rm-brain tools first." The server also ships proactive instructions, but a personal instruction is the most reliable nudge.
Make sure it's inside the Brain folder (case-insensitive) and that the tablet has synced
to the cloud (Wi-Fi on). Then run rm-brain sync. Notebooks named private/noindex/dotted
are skipped by design.
A normal sync skips pages whose image is unchanged. Run rm-brain reindex to re-extract
everything.
Roadmap / not in v1 (on purpose)
No vector search / embeddings yet (FTS5 keyword search, now typo-tolerant with a fuzzy fallback โ
the web app's search is built behind a SearchProvider seam so a semantic provider can drop in
later), no notifications or daily digests. The web app is a read-only way to see and search your notes โ asking questions stays
in Claude Desktop, so this remains a tool you reach for, not one that reaches for you. Ideas and
PRs welcome โ see CONTRIBUTING.md.
Contributing
Contributions are very welcome! Please read CONTRIBUTING.md to get set up, and CODE_OF_CONDUCT.md. Security issues: SECURITY.md.
๐ Support
If rm-brain is useful to you, consider supporting development โ it genuinely helps and keeps the project going:
You can also โญ star the repo โ it helps others discover it.
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.
Latest Blog Posts
- 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/gabrielanhaia/remarkable-brain'
If you have feedback or need assistance with the MCP directory API, please join our Discord server