reMarkable MCP Server (SamMorrowDrums/remarkable-mcp) is an MCP server listed on the M8ven Trust Index. It scores 36 out of 100, grade F. It declares 15 tools. No publisher has claimed this listing.
Enables AI assistants to read, search, and traverse your entire reMarkable library, including handwritten notes via OCR.
Warning. Serious findings were identified. Review the full report before connecting. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.
How we verified
Verified is a snapshot. Live keeps it current, and builds your track record.
⚡ Connect GitHub → continuous verification on every pushwhy connect →Who stands behind it
SamMorrowDrums
Source: Glama
Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →
Install from
The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.
These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.
remarkable_canvas<usecase>Open a reMarkable page in an interactive canvas viewer.</usecase> <instructions> Renders a notebook or document page and, in clients that support MCP Apps interactive UI, opens a canvas viewer that lets the user page through the document. This is the entry point for the interactive viewer.
my_toolmy_ocr_toolremarkable_read<usecase>Read and extract text content from a reMarkable document.</usecase> <instructions> Extracts content from a document with pagination to preserve context window.
remarkable_browse<usecase>Browse your reMarkable library or search for documents.</usecase> <instructions> Three modes: 1. Browse mode (default): List contents of a folder - Use path="/" for root folder - Use path="/FolderName" to navigate into folders 2. Search mode: Find documents by name - Set query="search term"…
remarkable_recent<usecase>Get your most recently modified documents.</usecase> <instructions> Returns documents sorted by modification date (newest first). Optionally includes a text preview of each document's content.
remarkable_search<usecase>Search across multiple documents and return matching content.</usecase> <instructions> Searches document names for the query, then optionally searches content with grep. Can filter by tags to narrow results. Returns summaries from multiple documents in a single call.
remarkable_status<usecase>Check connection status, active transport, and write capabilities.</usecase> <instructions> Returns authentication status, the active transport (cloud, ssh, or usb-web), the document count, and a capability matrix describing what each transport can do. Use this to verify your connection, ch…
remarkable_image<usecase>Get an image of a specific page from a reMarkable document.</usecase> <instructions> Renders a notebook or document page as an image (PNG or SVG). This is useful for: - Viewing hand-drawn diagrams, sketches, or UI mockups - Getting visual context that text extraction might miss - Implementi…
remarkable_upload<usecase>Upload a PDF or EPUB file to the reMarkable tablet.</usecase> <instructions> Uploads a local file to the tablet. Only PDF and EPUB formats are supported. Works in all three transports: - Cloud: uploaded via the sync protocol; supports parent_folder + document_name - SSH: transferred over SS…
remarkable_mkdir<usecase>Create a new folder on the reMarkable tablet.</usecase> <instructions> Creates a folder in the tablet's document hierarchy. In SSH mode the folder appears after xochitl restarts; in cloud mode it syncs to all your devices.
remarkable_move<usecase>Move a document or folder to a different location.</usecase> <instructions> Moves a document or folder by updating its parent reference in the metadata. Find the document name with remarkable_browse() first.
remarkable_rename<usecase>Rename a document or folder on the reMarkable tablet.</usecase> <instructions> Changes the display name of a document or folder by updating its metadata. Find the document name with remarkable_browse() first.
remarkable_delete<usecase>Delete a document or folder on the reMarkable tablet.</usecase> <instructions> DESTRUCTIVE operation. In cloud mode the item is moved to the trash (recoverable from the device's Trash). In SSH mode it is marked deleted in its metadata and disappears from the tablet UI after restart.
REMARKABLE_TOKEN"": "${input:remarkable-token}",REMARKABLE_USE_SSHREMARKABLE_USE_USB_WEBREMARKABLE_READ_ONLYREMARKABLE_DISABLE_CLOUD_FALLBACKPass --no-cloud-fallback (or set =1) to disable this and fail instead when the device is unreachable.REMARKABLE_SSH_KEYREMARKABLE_BACKGROUND_COLOR"": "#FFFFFF"REMARKABLE_OCR_BACKENDSet in your MCP config:GOOGLE_VISION_API_KEY"": "your-api-key"REMARKABLE_ROOT_PATH"": "/Work",REMARKABLE_SSH_HOSTREMARKABLE_SSH_USERREMARKABLE_SSH_PORTREMARKABLE_SSH_PASSWORDREMARKABLE_SYNC_WORKERS16 Parallel workers for cloud fetches (clamped to 64).REMARKABLE_DISABLE_CACHEunset Set to 1 to disable the on-disk blob cache entirely.REMARKABLE_CACHE_MAX_BLOB4194304 (4 MiB) Blobs larger than this are streamed through but not cached.REMARKABLE_CACHE_DIR~/.remarkable/cache/blobs Where cached blobs are stored.REMARKABLE_RETRY_ATTEMPTS3 Maximum number of request attempts (minimum 1)REMARKABLE_RETRY_DELAY2.0 Base delay in seconds for exponential backoffREMARKABLE_USB_HOSTREMARKABLE_USB_TIMEOUTREMARKABLE_SKIP_CONFIRMTool annotations
No tools have read-only/destructive annotations
Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.
All four hints declared on every tool
15/15 tools missing one or more hints — remarkable_canvas (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); my_tool (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); my_tool (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +12 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.
For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.
Destructive tools are labelled
3 tools perform destructive updates without destructiveHint — remarkable_read deletes at line 400 (tmp_path.unlink(missing_ok=True)); remarkable_recent deletes at line 1128 (tmp_path.unlink(missing_ok=True)); remarkable_image deletes at line 1822 (ocr_tmp_path.unlink(missing_ok=True))
Add destructiveHint:true to any tool whose handler calls .delete(), .upsert(), .update(), unlink, rm, DELETE, DROP, REPLACE INTO, or any operation that overwrites existing data.
Descriptions match behaviour
3 tools describe read intent but their handlers mutate — remarkable_read (line 400: tmp_path.unlink(missing_ok=True)); remarkable_recent (line 1128: tmp_path.unlink(missing_ok=True)); remarkable_image (line 1822: ocr_tmp_path.unlink(missing_ok=True))
Rename the tool, rewrite the description, or move the side-effect into a separate clearly-named tool.
Tool inputs are validated
13/15 tool handlers declare input schemas (87%)
Declare an inputSchema with zod/joi/yup on every tool definition.
Tool handlers catch errors
11/15 tool handlers wrap calls in try/catch (73%)
Wrap each tool handler body in try/catch and return a structured error response.
Tests exist
No test files found
Add tests that exercise each declared tool.
Tool description accuracy
3 tools have description/behavior mismatches: remarkable_read: description implies read-only but handler writes/deletes/executes; remarkable_recent: description implies read-only but handler writes/deletes/executes; remarkable_image: description implies read-only but handler writes/deletes/executes
Update tool descriptions to accurately reflect all capabilities — especially write, delete, or execute operations.
Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.
[](https://m8ven.ai/mcp/sammorrowdrums/remarkable-mcp)?variant=verified from the URL.Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.
https://m8ven.ai/api/mcp/tool-check