Skip to main content
Glama
SamMorrowDrums

reMarkable MCP Server

reMarkable MCP Server

Access a reMarkable library from MCP clients such as Claude, VS Code Copilot, OpenWebUI, and other compatible tools.

Features

  • Browse folders and recent documents.

  • Search names, tags, and extracted text.

  • Read typed text, PDF and EPUB text, highlights, and annotations.

  • Render notebooks and annotated PDFs as PNG or SVG.

  • Export one document as a complete PDF or sectioned Markdown resource.

  • Run handwriting OCR through Google Vision or Tesseract.

  • Upload files and manage folders in supported transports.

  • Render Markdown as PDF and upload it to the tablet.

  • Open an interactive canvas in clients that support MCP Apps.

  • Serve MCP over stdio or local Streamable HTTP.

  • Serve MCP 2026-07-28 and every earlier SDK-supported revision from one stable SDK 2.x MCPServer.


Related MCP server: reMarkable MCP Server

Quick Install

Prerequisite: install uv

The commands below use uvx, which is included with uv. Page images are rasterized with PyMuPDF; no system Cairo, browser, or graphics runtime needs to be installed on macOS, Linux, or Windows.

macOS and Linux

Use the official standalone installer:

curl -LsSf https://astral.sh/uv/install.sh | sh

Or install with Homebrew:

brew install uv

Windows

Use the official standalone installer from PowerShell:

powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

Or install with WinGet:

winget install --id=astral-sh.uv -e

Choose a connection

Start with the first mode that fits your setup.

Order

Mode

Setup

Writes

Use when

1

USB web

Connect the tablet and enable USB web

Upload; destination chosen by tablet

You want the shortest setup without a subscription or developer mode

2

Local directory

Install and sign in to the desktop app

No

You want offline, device-free reads from the desktop cache

3

Cloud

Register once; Connect subscription required

Full document and folder management

You need wireless or remote access

4

SSH

Enable developer mode and configure SSH

Full management and native authoring

You need direct filesystem access or native ink writes

USB Web Interface

Connect via USB and enable the web interface in your tablet's Storage Settings.

Install USB Web Mode in VS Code Install USB Web Mode in VS Code Insiders

  1. Connect your reMarkable via USB

  2. On your tablet, open Settings > Storage and enable USB web interface

  3. Install via the button above

Add to .vscode/mcp.json:

{
  "servers": {
    "remarkable": {
      "command": "uvx",
      "args": ["remarkable-mcp", "--usb"],
      "env": {
        "GOOGLE_VISION_API_KEY": "your-api-key"
      }
    }
  }
}
  • Make sure your reMarkable is connected via USB and unlocked

  • Verify USB web interface is enabled in Settings > Storage

  • The tablet should be accessible at http://10.11.99.1


Local Directory Mode

Read the official reMarkable desktop app's sync folder from disk. This mode is offline and read-only. The desktop app controls synchronization.

Add to .vscode/mcp.json:

{
  "servers": {
    "remarkable": {
      "command": "uvx",
      "args": ["remarkable-mcp", "--local-dir"]
    }
  }
}

With no path, the desktop app's data folder is auto-detected:

  • macOS (current app): ~/Library/Containers/com.remarkable.desktop/Data/Library/Application Support/remarkable/desktop

  • macOS (legacy app): ~/Library/Application Support/remarkable/desktop

  • Windows: %APPDATA%\remarkable\desktop

  • Linux: ~/.local/share/remarkable/desktop

Or point at any xochitl-style directory (e.g. a tablet backup):

{
  "servers": {
    "remarkable": {
      "command": "uvx",
      "args": ["remarkable-mcp", "--local-dir", "/path/to/xochitl-data"]
    }
  }
}
  • Content freshness depends on the desktop app. Keep it running and signed in.

  • This mode is read-only. Direct writes could bypass synchronization and corrupt the app cache.

  • If the directory can't be found and a cloud token is configured, the server falls back to cloud mode for read access (the server remains read-only because it was launched in local-directory mode)


Cloud Mode

Cloud mode works without a device connection and requires a reMarkable Connect subscription.

It fetches metadata in parallel and caches content-addressed blobs on disk. See Cloud performance and caching for configuration.

1. Get a One-Time Code

Go to my.remarkable.com/device/desktop/connect and generate a code.

2. Convert to Token

uvx remarkable-mcp --register YOUR_CODE

Registration saves the token to ~/.rmapi. When your MCP client runs the server as the same user on the same machine, remarkable-mcp reads that file automatically, so you do not need to put a token in the client configuration. Set REMARKABLE_TOKEN only when ~/.rmapi is unavailable, such as when the server runs under another user or on another machine.

3. Configure your MCP client

Minimal client-neutral server definition

Add this server definition using the MCP configuration UI or wrapper required by your client:

{
  "command": "uvx",
  "args": ["remarkable-mcp"]
}

No env entry is needed when the server can read the token from ~/.rmapi.

VS Code

VS Code's .vscode/mcp.json uses a top-level servers object. The saved ~/.rmapi credential means no token input is required:

{
  "servers": {
    "remarkable": {
      "command": "uvx",
      "args": ["remarkable-mcp"]
    }
  }
}
Claude Desktop and other clients

Claude Desktop and many other MCP clients use a top-level mcpServers object and literal values in env; they do not use VS Code's inputs array. With the token available in ~/.rmapi, the minimal configuration is:

{
  "mcpServers": {
    "remarkable": {
      "command": "uvx",
      "args": ["remarkable-mcp"]
    }
  }
}

If the token file is unavailable, add "env": {"REMARKABLE_TOKEN": "your-token"} to the remarkable server entry. Consult your client's documentation if it uses a different outer key or secret-storage mechanism.


SSH Mode

SSH provides direct filesystem access and native notebook authoring. It requires developer mode, which factory-resets the tablet when enabled. Use this mode only when USB web, local directory, or cloud mode does not provide the operation you need.

{
  "servers": {
    "remarkable": {
      "command": "uvx",
      "args": ["remarkable-mcp", "--ssh"]
    }
  }
}

See the SSH setup guide for authentication and device setup.



Connection Modes

All modes support reading, rendering, and single-document export. Cloud and SSH support full library management. USB web supports upload but does not accept a destination folder. Local directory mode is read-only.

Mode

Setup

Subscription

Offline

Tablet required

Raw source

Upload

Folder operations¹

Local directory

Desktop app installed

No²

Yes

No

PDF and EPUB

No

No

USB web

Enable in Settings

No

Yes

Yes

PDF

Root only

No

Cloud

One-time registration

Connect

No

No

PDF and EPUB

Yes

Yes

SSH

Developer mode

No

Yes

Yes

PDF and EPUB

Yes

Yes

¹ Folder ops = create folder / move / rename / delete. Upload and folder ops are enabled by default; pass --read-only to expose a read-only server. Deletes move items to the trash and prompt for confirmation when your client supports elicitation, and are refused without it unless REMARKABLE_SKIP_CONFIRM=1 is set.

² The desktop app itself signs in to the reMarkable cloud to sync; local directory mode just reads whatever the app has already synced to disk.

Automatic cloud fallback

If a selected device transport is unavailable and a cloud credential is configured, the server falls back to cloud mode. A server launched with --local-dir remains read-only after fallback. remarkable_status reports the effective transport and sets fell_back_to_cloud.

Pass --no-cloud-fallback (or set REMARKABLE_DISABLE_CLOUD_FALLBACK=1) to disable this and fail instead when the device is unreachable.

The transport is resolved once per server process. Restart the MCP server after connecting a device or starting the desktop app if the process already fell back to cloud.

Detailed setup:


OpenWebUI (Streamable HTTP)

OpenWebUI's native MCP connection uses Streamable HTTP. Start remarkable-mcp on the same machine:

uvx remarkable-mcp --http

Then add http://127.0.0.1:8000/mcp as the MCP server URL in OpenWebUI. The HTTP transport combines with --usb, --ssh, and --read-only; for example:

uvx remarkable-mcp --usb --http

The bind address and port can also be set with --host / --port or REMARKABLE_MCP_HOST / REMARKABLE_MCP_PORT.

The server uses MCP Python SDK 2.x's dual-era endpoint. Modern 2026-07-28 requests are sessionless; older clients continue to use the initialize handshake and legacy MCP sessions on the same /mcp route. The reMarkable token and selected tablet transport remain process-local CLI/env configuration and are never inferred from MCP HTTP authorization headers.

WARNING

Streamable HTTP has no built-in authentication. It binds to127.0.0.1 by default. Keep that default unless you control the network boundary. Wildcard binds such as 0.0.0.0 and :: are rejected because they cannot provide a strict Host allowlist. A concrete non-loopback address is allowed but exposes every enabled tool, including writes, to clients that can reach the port.

Remote access through an authenticated reverse proxy

Keep remarkable-mcp on its default loopback bind and put the proxy on the same host. MCPServer's DNS-rebinding protection only permits loopback Host and Origin values by default. A proxy that forwards its public hostname unchanged will therefore receive 421 Misdirected Request; a public browser Origin will receive 403 Forbidden.

The proxy must authenticate requests, rewrite Host to the loopback upstream, and clear Origin. For example, with nginx and an existing htpasswd file:

location /mcp {
    auth_basic "reMarkable MCP";
    auth_basic_user_file /etc/nginx/remarkable-mcp.htpasswd;

    proxy_pass http://127.0.0.1:8000;
    proxy_http_version 1.1;
    proxy_buffering off;
    proxy_read_timeout 3600s;

    # Required by MCPServer's default DNS-rebinding protection.
    proxy_set_header Host 127.0.0.1:8000;
    proxy_set_header Origin "";
}

Do not expose the upstream port directly. Configure OpenWebUI with the authenticated proxy URL, such as https://mcp.example.com/mcp.

For NixOS, remarkable-mcp-bridge.nix provides a systemd module with the same loopback default:

{
  imports = [ ./remarkable-mcp-bridge.nix ];
  services.remarkable-mcp = {
    enable = true;
    command = "/opt/remarkable-mcp/.venv/bin/remarkable-mcp";
  };
}

The service user must have its reMarkable credentials under /var/lib/remarkable-mcp (or the configured home). The module adds Tesseract to the service's executable search path; install the configured command separately.


OpenClaw Integration

remarkable-mcp works as an OpenClaw skill. Add to your openclaw.json:

{
  "mcpServers": {
    "remarkable": {
      "command": "uvx",
      "args": ["remarkable-mcp", "--usb"]
    }
  }
}

Install from ClawHub:

clawhub install remarkable-mcp

Or copy the SKILL.md from this repository into your ~/.openclaw/skills/remarkable-mcp/ directory.


Tools

Tool

Description

remarkable_read

Read and extract text from documents (with pagination and search)

remarkable_browse

Navigate folders, search by document name, or filter by tags

remarkable_search

Search content across multiple documents (with tag filtering)

remarkable_recent

Get recently modified documents

remarkable_status

Check connection status and the per-transport capability matrix

remarkable_image

Get PNG/SVG images of pages with optional OCR

remarkable_export

Export one document as a temporary PDF or Markdown resource

The read/search/render tools are read-only. remarkable_export never changes the tablet, but it writes a bounded temporary file on the MCP server host and therefore declares readOnlyHint=false. Export links expire after 15 minutes and the server retains at most eight at a time. Supported transports also register write tools by default; pass --read-only to disable them. See Write Tools. Clients that support MCP Apps can also open remarkable_canvas.

Full tools reference

Tool behavior

  • Browsing a document path returns its content.

  • Empty notebook text can trigger OCR automatically.

  • Search can scan several matching documents.

  • Image tools return visual content that text extraction misses.

  • remarkable_read.total_pages is the physical document count; content_pages counts extracted-text chunks, and more / next_page continue those chunks. Raw PDF reads count pages from the already-downloaded PDF. If a raw EPUB's separate archive cannot be read, its text still returns with total_pages: null and total_pages_known: false.

  • PNG images of PDF-backed pages merge the source page and annotations automatically; pass render_merged=False for the annotation layer alone.

  • PDF exports preserve physical page order and merge mapped source underlays with annotations by default. Markdown exports keep fixed source/typed/annotation/ highlight/OCR sections without guessing document structure.

  • OCR uses Google Vision when configured and otherwise runs locally with Tesseract.

  • Browse and search accept tag filters.

Example Usage

# Read a document
remarkable_read("Meeting Notes")

# Search for keywords
remarkable_read("Project Plan", grep="deadline")

# Enable OCR for handwritten notes
remarkable_read("Journal", include_ocr=True)

# Browse your library
remarkable_browse("/Work/Projects")

# Filter by tags
remarkable_browse("/", tags=["important"])
remarkable_browse("/Work", tags=["project", "active"])

# Search across documents
remarkable_search("meeting", grep="action items")

# Search with tag filter
remarkable_search("project", tags=["work"])

# Get recent documents
remarkable_recent(limit=10)

# Get a page image (for visual content like UI mockups or diagrams)
remarkable_image("UI Mockup", page=1)

# Get SVG for editing in design tools
remarkable_image("Wireframe", output_format="svg")

# Get image with OCR text extraction
remarkable_image("Handwritten Notes", include_ocr=True)

# Imported PDF pages include their reMarkable annotations automatically
remarkable_image("Research Paper", page=3)

# Request only the reMarkable annotation layer
remarkable_image("Research Paper", page=3, render_merged=False)

# Transparent background for compositing
remarkable_image("Logo Sketch", background="#00000000")

# Compatibility mode: return resource URI instead of embedded resource
remarkable_image("Diagram", compatibility=True)

# Export a complete PDF through a temporary MCP ResourceLink
remarkable_export("Meeting Notes")

# Export honest, sectioned Markdown with opt-in OCR
remarkable_export("Journal", output_format="markdown", include_ocr=True)

# Export only full-page annotation layers when archive data is available
remarkable_export("Research Paper", pdf_mode="annotations")

Note: PNG rendering uses PyMuPDF for both notebook SVGs and PDF pages, so remarkable_image does not require Cairo, Inkscape, Chromium, or another system graphics runtime. If local stroke parsing cannot handle a page, USB and SSH modes fall back to the tablet's native PDF export and cloud mode falls back to an original source PDF when one exists.


Resources

Documents are automatically registered as MCP resources:

URI Scheme

Description

remarkable:///{path}.txt

Extracted text content

remarkableraw:///{path}.pdf.txt

Extracted text from the original PDF

remarkableraw:///{path}.epub.txt

Extracted text from the original EPUB

remarkableimg:///{path}.page-{N}.png

PNG image of page N (notebooks only)

remarkablesvg:///{path}.page-{N}.svg

SVG vector image of page N (notebooks only)

remarkableexport:///{format}/{id}

Temporary generated PDF or Markdown export

Trashed documents are excluded from tool, canvas, and resource lookup, so a trashed item cannot shadow a live document with the same name.

remarkable_export returns a ResourceLink instead of embedding potentially large file content in the tool response. The server stores the file in a private temporary directory for 15 minutes, retains at most eight exports, and removes managed exports at shutdown. Fetch and save the linked resource for durable use.

Full resources reference


OCR for Handwriting

For handwritten content, remarkable-mcp offers two OCR backends:

Backend

Setup

Offline

Notes

Google Vision

API key

No

Good handwriting support

Tesseract

System install

Yes

Better suited to printed text

Quick Setup

Set REMARKABLE_OCR_BACKEND in your MCP config:

{
  "env": {
    "REMARKABLE_OCR_BACKEND": "auto"
  }
}

Options: auto, google, tesseract

  1. Enable Cloud Vision API

  2. Create an API key

  3. Add to config: "GOOGLE_VISION_API_KEY": "your-key"

Cost: 1,000 free requests/month, then ~$1.50 per 1,000.

Google Vision setup guide

Open-source OCR designed for printed text. Poor results with handwriting, but useful as an offline fallback.

# Install Tesseract
# macOS
brew install tesseract

# Ubuntu/Debian
sudo apt install tesseract-ocr

# Windows
choco install tesseract

Default Behavior (auto)

When REMARKABLE_OCR_BACKEND=auto (default):

  1. Google Vision (if GOOGLE_VISION_API_KEY is set)

  2. Tesseract (fallback)


Write Tools by Transport

Write tools let you upload, organize, and manage documents on your reMarkable. Enabled by default on write-capable transports. Cloud and SSH modes support the full set; USB web supports upload only (its firmware exposes no folder operations); local-directory mode is always read-only. Pass --read-only to expose a read-only server elsewhere.

Feature

Local Directory

Cloud Mode

SSH Mode

USB Web Mode

Upload

✅ (tablet-selected folder)

Mkdir

Move

Rename

Delete

✅ (→ trash)

✅ (→ trash; optional permanent)

Disabling Write Tools (read-only mode)

Write tools are on by default in each write-capable mode. Local-directory mode is always read-only. To make another transport read-only, add the --read-only flag:

{
  "servers": {
    "remarkable": {
      "command": "uvx",
      "args": ["remarkable-mcp", "--read-only"]
    }
  }
}

It combines with any transport flag (--ssh, --usb):

{
  "servers": {
    "remarkable": {
      "command": "uvx",
      "args": ["remarkable-mcp", "--ssh", "--read-only"]
    }
  }
}

Or set the environment variable:

{
  "env": {
    "REMARKABLE_READ_ONLY": "1"
  }
}

The legacy --write flag and REMARKABLE_ENABLE_WRITE variable are still accepted for backward compatibility but are now no-ops (write is the default). --write and --read-only are mutually exclusive.

Available Write Tools

Tool

Description

remarkable_upload(file_path, parent_folder, document_name, defer_restart)

Upload a PDF or EPUB file (cloud, SSH, and USB web; USB web preserves the name but ignores parent_folder)

remarkable_markdown_to_pdf(markdown, document_name, parent_folder, defer_restart)

Render Markdown as a paginated PDF and upload it (cloud, SSH, and USB web)

remarkable_mkdir(folder_name, parent, defer_restart)

Create a new folder (cloud and SSH)

remarkable_move(document, dest_folder, defer_restart)

Move a document or folder (cloud and SSH)

remarkable_rename(document, new_name, defer_restart)

Rename a document or folder (cloud and SSH)

remarkable_delete(document, defer_restart, permanent)

Move a document/folder to Trash; SSH can permanently remove it with permanent=True

remarkable_refresh()

Safely restart xochitl once to apply pending writes made with defer_restart=True; no-op after this process has confirmed a clean state — SSH only

remarkable_author(method, ..., defer_restart)

Author native ink and notebooks — draw (append strokes), add_page (append a blank notebook page), create_document (new notebook) — SSH only

Safety

  • Upload registers in cloud, SSH, and USB web mode — local-directory mode never exposes write tools.

  • mkdir, move, rename, delete register in cloud and SSH modes only — they are not exposed on USB web (the tablet's USB web firmware has no folder/move/rename/delete endpoints), keeping the tool list scoped to what the active transport actually supports.

  • Delete prompts for confirmation when possible — if the client supports MCP elicitation, remarkable_delete asks the user to confirm before deleting. MCP SDK 2.x carries that prompt as a multi-round input request for 2026-07-28 clients and as push elicitation for legacy clients. If the client can't show a prompt, the delete is refused (not performed) unless REMARKABLE_SKIP_CONFIRM=1 is set — so write-on-by-default can't silently delete from clients that lack elicitation. Cloud and SSH move items to Trash by default. SSH also supports permanent=True for an explicitly requested permanent removal; cloud permanent deletion remains a Trash-management operation in the app/tablet. Set REMARKABLE_SKIP_CONFIRM=1 to allow deletes without a prompt in automated setups. All write tools carry ToolAnnotations(read_only_hint=False) (and destructive_hint=True for delete) so an agent harness can gate writes at the MCP layer.

  • SSH work is fair and serialized per server — one FIFO dispatcher owns every SSH subprocess, so startup scans, reads, uploads, mutations, and refresh probes cannot churn the tablet's USB CDC connection concurrently. Cached metadata reads bypass the queue.

  • Concurrent SSH writes share a refresh barrier — near-simultaneous writes are persisted in FIFO order, then every participating call waits for one shared xochitl restart before reporting success. A bounded debounce coalesces bursts without background or late success.

  • SSH refreshes avoid the firmware emergency-reboot path — the serialized refresh clears only xochitl's systemd start counter immediately before restart, then requires stable, non-multiplexed SSH sessions on the same boot. OpenSSH aliases are resolved with ssh -G; if USB web was reachable at that effective host before restart, port 80 must recover too. A failed probe keeps refresh_pending: true and never replays the write.

  • Retries are deliberately narrow — only connection failures that prove the remote command never started (for example connection refused, connect timeout, or banner timeout) receive bounded exponential backoff. Ambiguous/post-start write failures are never replayed; the error directs the caller to refresh and inspect the tablet instead.

  • For explicit bulk operations, pass defer_restart=True to each write (including remarkable_author) — or set REMARKABLE_DEFER_RESTART=1 — and call remarkable_refresh() once at the end. Deferred writes return immediately with refresh_pending: true; an extra refresh is a no-op only after the current server process has confirmed a clean state. A new process performs one conservative recovery refresh because it cannot know whether an earlier process left disk changes pending.

  • A multi-step SSH write that fails after any confirmed mutation returns write_partially_persisted, says do not repeat, and reports whether refresh recovery is still pending. A shared refresh failure is propagated only to participants whose own mutation was dirty; clean validation/pre-execution failures retain their original error.

  • USB HTTP requests use the same bounded operation core with REMARKABLE_USB_MAX_CONCURRENCY (default 2). Cloud sync keeps its existing pooled, idempotency-aware request layer and REMARKABLE_SYNC_WORKERS control.

Examples

# Upload a PDF
remarkable_upload("paper.pdf", parent_folder="/Research")

# Render Markdown and upload the PDF without creating a local file
remarkable_markdown_to_pdf(
    "# Meeting Notes\n\n- Follow up with Sam",
    document_name="Meeting Notes",
    parent_folder="/Research",
)

# Create a folder
remarkable_mkdir("2024 Archive", parent="/Archive")

# Move a document
remarkable_move("Meeting Notes", "/Archive/2024 Archive")

# Rename a document
remarkable_rename("Untitled", "Q4 Planning Notes")

# Delete (destructive; confirms via elicitation when supported)
remarkable_delete("Old Draft")

# Permanently delete in SSH mode only
remarkable_delete("Disposable Test", permanent=True)

# Bulk import (SSH): defer the restart on each write, then refresh once.
# One xochitl restart for the whole batch instead of one per upload.
remarkable_upload("a.pdf", parent_folder="/Research", defer_restart=True)
remarkable_upload("b.pdf", parent_folder="/Research", defer_restart=True)
remarkable_refresh()

# Author native ink and notebooks (SSH only)
# Append pen/highlighter strokes to a page (coordinates normalized [0,1] from
# the page's top-left). The interactive canvas Save button calls this too.
remarkable_author(
    method="draw", document="Ideas", page=1,
    strokes=[{"points": [[0.1, 0.2], [0.8, 0.2]], "tool": "highlighter", "color": "yellow"}],
)

# Append a blank, drawable page to the end of a notebook
remarkable_author(method="add_page", document="Ideas")

# Create a new blank notebook
remarkable_author(method="create_document", name="Sketches")

# Only seed typed text when the user explicitly requested it.
remarkable_author(method="create_document", name="Meeting notes", text="Agenda\nFollow-ups")

Interactive Canvas App (MCP Apps)

An interactive page viewer built on the MCP Apps extension (SEP-1865). Clients that support MCP Apps (such as ChatGPT, Claude, VS Code, and the MCP Inspector) render a canvas in a side panel where you can view a document page and navigate through it.

There is no flag to enable it — the remarkable_canvas tool and its ui://remarkable/canvas resource are always registered, and the capability is negotiated automatically in client capabilities (modern discovery or a legacy initialize handshake). App-capable clients open the interactive canvas; every other client simply receives the rendered page as an image, so the tool is safe and useful everywhere.

This registers one tool:

Tool

Description

remarkable_canvas(document, page)

Open a page in the interactive canvas viewer

How it behaves:

  • App-capable clients open the canvas (declared at ui://remarkable/canvas, MIME text/html;profile=mcp-app) and can page through the document via the MCP Apps postMessage bridge — the server delivers each rendered page in the wire result's structuredContent (structured_content in Python).

  • Other clients still get the rendered page back as an embedded PNG image, so the tool is useful everywhere; it just won't open the interactive panel. The _meta.ui / ui:// metadata is inert to clients that don't advertise the MCP Apps UI extension.

Drawing and authoring from the canvas

When write mode is on (the default) and the active transport is SSH, the canvas becomes a write surface:

  • Draw: choose a pen or highlighter, draw, then save native .rm ink to the device.

  • Add page: queue a blank native notebook page, draw on it, then save.

  • One source of truth: the canvas calls the same remarkable_author tool a model would call (method="draw" on Save, method="add_page" for +Page), so the human path and the model path produce byte-identical results.

The Save / Draw / +Page controls are hidden when the page isn't writable (read-only mode, or a non-SSH transport), and the canvas falls back to a plain image viewer. The iframe bridge follows the MCP Apps spec but is best validated against your specific client.


Advanced Configuration

Root Path Filtering

Limit the MCP server to a specific folder on your reMarkable. All operations will be scoped to this folder:

{
  "servers": {
    "remarkable": {
      "command": "uvx",
      "args": ["remarkable-mcp", "--ssh"],
      "env": {
        "REMARKABLE_ROOT_PATH": "/Work",
        "GOOGLE_VISION_API_KEY": "your-api-key"
      }
    }
  }
}

With this configuration:

  • remarkable_browse("/") shows contents of /Work

  • remarkable_browse("/Projects") shows /Work/Projects

  • Documents outside /Work are not accessible

Useful for:

  • Focusing on work documents during office hours

  • Separating personal and professional notes

  • Limiting scope for specific AI workflows

Custom Background Color

Set the default background color for image rendering:

{
  "servers": {
    "remarkable": {
      "command": "uvx",
      "args": ["remarkable-mcp", "--ssh"],
      "env": {
        "REMARKABLE_BACKGROUND_COLOR": "#FFFFFF"
      }
    }
  }
}

Supported formats:

  • #RRGGBB: RGB hex, such as #FFFFFF

  • #RRGGBBAA: RGBA hex, such as #00000000

Default is #FBFBFB (reMarkable paper color). This affects both the remarkable_image tool and image resources.


Retry Configuration

Cloud API requests automatically retry on transient failures (HTTP 429, 500, 502, 503, 504) and network errors with exponential backoff and jitter. You can tune this via environment variables:

Variable

Default

Description

REMARKABLE_RETRY_ATTEMPTS

3

Maximum number of request attempts (minimum 1)

REMARKABLE_RETRY_DELAY

2.0

Base delay in seconds for exponential backoff

Rate-limit retries honor numeric and HTTP-date Retry-After values, capped at 20 seconds. Authentication failures trigger token renewal instead of retry.


Cloud Performance & Caching

Cloud mode is built to make a device-free workflow fast:

  • Parallel traversal: fetch document metadata concurrently.

  • Connection pooling: reuse HTTP connections.

  • Content-addressed blob cache: reuse immutable blobs by hash and fetch new hashes when documents change.

You normally don't need to configure any of this, but these environment variables let you tune it:

Variable

Default

Description

REMARKABLE_SYNC_WORKERS

16

Parallel workers for cloud fetches (clamped to 64).

REMARKABLE_DISABLE_CACHE

unset

Set to 1 to disable the on-disk blob cache entirely.

REMARKABLE_CACHE_DIR

~/.remarkable/cache/blobs

Where cached blobs are stored.

REMARKABLE_CACHE_MAX_BLOB

4194304 (4 MiB)

Blobs larger than this are streamed through but not cached.

The cache is purely a local accelerator: deleting REMARKABLE_CACHE_DIR only forces the next read to re-download. The mutable cloud root hash is always fetched fresh, so you never see a stale library.


Common Workflows

  • Read recent notes and extract action items.

  • Search names, tags, typed text, and OCR output.

  • Review annotated PDFs with the source page and annotations together.

  • Move selected notes into another local workflow.

  • Upload reference PDFs or generated Markdown documents.


Documentation

Guide

Description

SSH Setup

Enable developer mode and configure SSH

Google Vision Setup

Set up handwriting OCR

Tools Reference

Detailed tool documentation

Resources Reference

MCP resources documentation

Capability Negotiation

MCP protocol capabilities

Development

Contributing and development setup

Future Plans

Roadmap and planned features


Development

git clone https://github.com/SamMorrowDrums/remarkable-mcp.git
cd remarkable-mcp
uv sync --all-extras
uv run pytest -v

Development guide

Multi-transport smoke test

When something looks broken, run the deterministic, no-AI smoke test first. It drives the real server over MCP and exercises every available tool in every reachable transport in this order: local directory, cloud, USB web, then SSH.

uv run python smoke/run_smoke.py            # all available modes
uv run python smoke/run_smoke.py --read-only # connectivity + reads only

Smoke test guide and per-mode expectations.


License

MIT


Built with rmscene, PyMuPDF, markdown-it-py, and inspiration from ddvk/rmapi.

Available Tools

14 tools
remarkable_browseA
Read-onlyIdempotent

Browse your reMarkable library or search for documents. 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" to search across all documents

  3. Filter by tags: Find documents with specific tags

    • Set tags=["tag1", "tag2"] to filter by tags

    • Works in both browse and search modes

Results include document names, types, modification dates, and tags.

Note: If REMARKABLE_ROOT_PATH is configured, only documents within that folder are accessible. Paths are relative to the root path.

  • path: Folder path to browse (default: "/" for root)

  • query: Search term to find documents by name (optional, triggers search mode)

  • tags: List of tags to filter documents (optional, case-insensitive)

ParametersJSON Schema
NameRequiredDescriptionDefault
pathNo/
tagsNo
queryNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds significant behavioral context beyond annotations: the three modes, results included (names, types, dates, tags), and the note about REMARKABLE_ROOT_PATH restricting access. No contradictions with annotations (readOnlyHint, idempotentHint, destructiveHint).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with sections (usecase, instructions, parameters, examples), each sentence adds value, and it is front-loaded with the core use case. No unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 3 optional parameters, an output schema, and annotations covering read-only behavior, the description is complete. It covers all modes, path restrictions, and examples. No missing information that would hinder tool selection or invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description fully compensates by explaining each parameter's purpose (path for folder, query for search, tags for filtering), their defaults, and how they interact. Examples illustrate usage clearly.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states the tool's purpose: 'Browse your reMarkable library or search for documents.' It details three modes (browse, search, filter by tags) and provides clear examples, effectively distinguishing it from sibling tools like remarkable_search.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit instructions for when to use each mode (browse, search, filter), includes a note about the REMARKABLE_ROOT_PATH configuration, and gives examples. However, it does not explicitly differentiate from the sibling tool remarkable_search, which might lead to confusion about which search tool to use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

remarkable_canvasA
Read-only

Open a reMarkable page in an interactive canvas viewer. 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.

The canvas is currently a read-only viewer (render + page navigation). For plain image extraction without the interactive surface, use remarkable_image instead.

Clients that do not support MCP Apps still get the rendered page back as an embedded PNG image, so this tool is useful everywhere; it just won't open the interactive panel.

  • document: Document name or path (use remarkable_browse to find documents)

  • page: Page number to open (default: 1, 1-indexed)

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNo
documentYes

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=true and openWorldHint=false. The description adds that the canvas is read-only with page navigation and explains different behavior for clients with/without MCP Apps support, plus return of embedded PNG for non-interactive clients. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear <usecase>, <instructions>, <parameters>, and <examples> sections. Every sentence adds value without unnecessary verbosity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the tool's purpose, usage, parameter details, behavioral differences, and includes examples. It is complete for a read-only tool with interactive capabilities, though error handling or conditional behavior when document is not found is not mentioned.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but the description adds meaning for both parameters: document can be name or path (with hint to use remarkable_browse), page is 1-indexed with default 1, and examples are provided. This compensates well for the schema's lack of descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states 'Open a reMarkable page in an interactive canvas viewer' and distinguishes from sibling remarkable_image for plain image extraction, giving a specific verb and resource with clear differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides clear context for when to use this tool (interactive viewing) vs alternatives (use remarkable_image for plain extraction) and advises using remarkable_browse to find documents. It does not explicitly list exclusions but implies the alternative use case.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

remarkable_deleteA
Destructive

Delete a document or folder on the reMarkable tablet. DESTRUCTIVE operation. By default the item is moved to the tablet's Trash and remains recoverable. In SSH mode only, permanent=True removes the resolved UUID and all sidecar files instead; use that only when the user explicitly asked for permanent deletion.

Works in cloud and SSH modes (default; --read-only disables). Not available over the USB web interface.

If the client supports elicitation, this tool asks the user to confirm before deleting. If the client cannot show a confirmation prompt, the delete is refused unless REMARKABLE_SKIP_CONFIRM=1 is set (for headless automation).

  • document: Name or path of the document/folder to delete

  • defer_restart: SSH only. Skip the xochitl restart so a batch of deletes can refresh once via remarkable_refresh() instead of once per delete. Sets "refresh_pending": true. Ignored in cloud mode.

  • permanent: SSH only. Permanently remove the resolved document/folder files instead of moving the item to Trash (default: False).

ParametersJSON Schema
NameRequiredDescriptionDefault
documentYes
permanentNo
defer_restartNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already mark destructiveHint=true, and the description reinforces this while adding substantial detail: items are moved to Trash by default, permanent=True removes the resolved UUID and sidecar files, confirmation is required unless skipped, and defer_restart triggers a refresh_pending flag. This significantly enriches the behavioral model beyond the annotation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with usecase, instructions, parameters, and examples. Each section is dense with useful information without redundancy. The front-loaded usecase immediately states the purpose, and the instructions convey critical safety and mode details efficiently.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers all key aspects: default Trash behavior vs permanent deletion, mode availability (cloud/SSH, not USB), confirmation mechanics, parameter nuances, and example invocations. Even though an output schema exists, the description sufficiently contextualizes the operation for a destructive tool with mode-specific behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

While the schema only lists titles and types, the description's <parameters> section explains each parameter in practical terms: 'document' is a name/path, 'permanent' is SSH-only and removes files permanently, and 'defer_restart' is SSH-only and skips restart to batch deletes. This fully compensates for the 0% schema description coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a clear statement: 'Delete a document or folder on the reMarkable tablet.' This specifies the verb (delete), the resource (document or folder), and the scope (reMarkable tablet), effectively distinguishing it from sibling tools like remarkable_move or remarkable_rename.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage context: it works in cloud and SSH modes (not USB web interface), is destructive by default, and explains when permanent deletion should be used ('only when the user explicitly asked for permanent deletion'). It also covers confirmation behavior and the defer_restart option, giving clear guidance on when and how to invoke the tool safely.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

remarkable_exportA

Export one reMarkable document as a reusable PDF or Markdown file. Exports a single document without modifying the tablet or its library.

The generated file is written to a server-managed temporary directory and returned as an MCP ResourceLink. The tool response stays small: it never embeds the PDF/Markdown as base64 and never writes to an arbitrary host path. The resource expires after 15 minutes and may be evicted earlier when more than eight exports are retained. Fetch and save the linked resource for durable use.

PDF behavior:

  • pdf_mode="merged" (default) preserves complete physical pages, combining mapped PDF underlays and reMarkable annotations.

  • pdf_mode="annotations" exports full-page annotation layers only when the transport provides a document archive.

  • Pages remain in physical device order. A render failure produces a labeled placeholder at that ordinal and a partial-export warning; pages are not skipped.

Markdown behavior:

  • Preserves basic source metadata and fixed source text, typed text, annotation, highlight, and OCR sections.

  • OCR is opt-in and uses the same configured/cached OCR path as remarkable_read.

  • Extracted text is kept verbatim; the exporter does not invent headings, lists, links, or page attribution it cannot prove.

ParametersJSON Schema
NameRequiredDescriptionDefault
documentYes
pdf_modeNomerged
include_ocrNo
output_formatNopdf

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description goes well beyond annotations by detailing that the output is written to a temporary directory, returned as a MCP ResourceLink (never base64 or arbitrary path), expires after 15 minutes, and may be evicted if more than eight exports are retained. It also explains PDF modes, Markdown behavior, OCR opt-in, and partial export handling. No contradiction with annotations (destructiveHint=false is consistent with 'without modifying the tablet').

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description uses a clear XML-like structure (usecase, instructions, parameters, examples) that is easy to parse. It front-loads the essential purpose and then goes into necessary detail. While verbose, every section adds value; minor trimming could improve conciseness without losing information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 4 parameters (1 required), no output schema, and moderate complexity, the description covers input requirements, behavioral details (resource lifespan, eviction policy), error handling (render failure placeholders), and usage examples. It leaves no significant gaps for an AI agent to infer.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description compensates by listing each parameter in <parameters> with brief explanations (e.g., 'document: Document name or path (use remarkable_browse to find documents)') and provides three examples showing various combinations. However, it could add more detail about parameter interactions or constraints beyond what the schema enums already convey.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The <usecase> tag states 'Export one reMarkable document as a reusable PDF or Markdown file', providing a specific verb (Export), resource (one reMarkable document), and output format. This clearly distinguishes it from siblings like remarkable_read (read content), remarkable_browse (list documents), and remarkable_upload (import).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The <instructions> explain that the tool exports a single document without modifying the tablet or its library, and the <parameters> section notes that the 'document' parameter can be found using remarkable_browse. While no explicit alternative comparisons are given, the context of sibling names and the detailed examples implicitly guide when to use this tool versus others.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

remarkable_imageA
Read-onlyIdempotent

Get an image of a specific page from a reMarkable document. 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

  • Implementing designs based on hand-drawn wireframes

  • SVG format for scalable vector graphics that can be edited

Merged PDF + Annotation Rendering

PNG pages backed by an imported PDF automatically composite the PDF page with its reMarkable annotations. Set render_merged=False for an annotation-only render, or True to explicitly request compositing. SVG remains annotation-only.

Response Formats

By default, images are returned as embedded resources (EmbeddedResource) which include the full image data inline:

  • PNG: Returned as BlobResourceContents with base64-encoded data

  • SVG: Returned as TextResourceContents with SVG markup

If your client doesn't support embedded resources in tool responses, set compatibility=True to receive a JSON response with just the resource URI. The client can then fetch the resource separately.

Optionally, enable include_ocr=True to extract text from the image using OCR. Google Vision is used when configured; otherwise OCR runs locally with Tesseract.

Note: Native notebooks retain their existing stroke rendering behavior. If older USB firmware returns only a native PDF export, PNG remains available; SVG and explicit annotation-only rendering require an rmdoc archive and return a clear error when it is unavailable.

  • document: Document name or path (use remarkable_browse to find documents)

  • page: Page number (default: 1, 1-indexed)

  • background: Background color as hex code. Supports RGB (#RRGGBB) or RGBA (#RRGGBBAA). Default is "#FBFBFB" (reMarkable paper color), or set REMARKABLE_BACKGROUND_COLOR env var to override. Use "#00000000" for transparent.

  • output_format: Output format - "png" (default) or "svg" for vector graphics

  • compatibility: If True, return resource URI in JSON instead of embedded resource. Use this if your client doesn't support embedded resources in tool responses.

  • include_ocr: Enable OCR text extraction from the image (default: False).

  • render_merged: PDF compositing mode for PNG: None (default) automatically merges PDF-backed pages, True explicitly requests merging, and False returns the annotation-only layer. SVG output remains annotation-only.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNo
documentYes
backgroundNo
include_ocrNo
compatibilityNo
output_formatNopng
render_mergedNo

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is well-covered. The description adds substantial behavioral context beyond annotations: details about merged PDF+annotation rendering behavior, response format differences (PNG as Blob, SVG as Text), compatibility fallback mechanism, OCR behavior (Google Vision vs local Tesseract), and legacy firmware limitations. This is comprehensive behavioral disclosure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear sections (usecase, instructions, parameters, examples) and front-loaded purpose. However, it is somewhat verbose for an AI agent tool description—some details about OCR implementation (Google Vision vs Tesseract) and legacy firmware behavior could be in external docs or less critical for initial selection. Still, every section earns its place for a complex tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (7 parameters, 1 required, no output schema), the description is completely sufficient. It covers input semantics, behavioral details (merged rendering, response formats), error cases (legacy firmware), and provides examples for all key parameter configurations. The lack of output schema is compensated by clear explanations of what each format returns (BlobResourceContents, TextResourceContents, JSON with URI).

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description fully carries the burden of explaining parameters. It does so excellently: each parameter is described with default values, format requirements (e.g., hex codes for background), behavioral implications (render_merged values), and edge cases (transparent background notation). The examples provide concrete usage patterns that clarify parameter combinations.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get an image of a specific page from a reMarkable document.' It specifies the verb (Get), resource (image of a page), and scope (from a reMarkable document). The use cases and examples further differentiate it from siblings like remarkable_read (text extraction) and remarkable_canvas (canvas manipulation).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit guidance on when to use this tool vs alternatives. The use cases section lists specific scenarios (viewing diagrams, getting visual context, etc.) and the examples cover common invocation patterns. The instructions explain when to use compatibility mode and include_ocr, and the parameters section clarifies when to use render_merged with different document types. Sibling tools like remarkable_export and remarkable_read are implicitly distinguished.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

remarkable_markdown_to_pdfA

Render Markdown text as a PDF and upload it to the reMarkable tablet. Use this when the user wants notes, reports, summaries, or other Markdown content written back to the tablet without first creating a local file. Headings, lists, tables, links, blockquotes, and code blocks are rendered into a paginated A4 PDF. Raw HTML is escaped and image assets are omitted so rendering never reads local files or fetches remote content.

Works in all three transports:

  • Cloud: sync upload with parent_folder and document_name

  • SSH: filesystem upload with parent_folder and document_name

  • USB web: upload whose multipart filename is document_name + ".pdf"; parent_folder is ignored and the tablet web service chooses the folder.

Requires write mode (the default; disabled with --read-only).

  • markdown: Markdown source text. Must not be empty.

  • document_name: Display name on the tablet (default: "Markdown").

  • parent_folder: Destination folder (default: root "/"). USB web ignores this parameter because its upload endpoint has no folder argument.

  • defer_restart: SSH only. When True, skip the xochitl restart and call remarkable_refresh() once after the batch. Forwarded exactly like remarkable_upload; ignored in cloud and USB web modes.

ParametersJSON Schema
NameRequiredDescriptionDefault
markdownYes
defer_restartNo
document_nameNoMarkdown
parent_folderNo/

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Despite annotations only providing readOnlyHint: false, the description fully discloses behavior: it renders specific Markdown elements (headings, lists, tables, etc.), mentions that raw HTML is escaped and images are omitted, details transport-specific behavior (cloud vs SSH vs USB web), and states it requires write mode. There is no contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear XML tags (usecase, instructions, parameters, examples) and is appropriately sized for the complexity. Every sentence adds value, from rendering details to transport differences. No fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (4 parameters, multiple transports, rendering behavior, and an output schema), the description is comprehensive. It covers transport modes, parameter behaviors, rendering details, and prerequisites (write mode). The presence of examples further enhances completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate—and it does excellently. It explains each parameter with usage notes (e.g., 'Must not be empty' for markdown, defaults, transport-specific behavior like USB web ignoring parent_folder, and defer_restart being SSH-only and forwarded like remarkable_upload). This far exceeds what the schema alone provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific verb 'Render Markdown text as a PDF and upload it to the reMarkable tablet,' which precisely identifies the tool's function and distinguishes it from siblings like remarkable_upload (which uploads existing files) and remarkable_image (which handles images). The usecase tag reinforces the purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The <instructions> explicitly say 'Use this when the user wants notes, reports, summaries, or other Markdown content written back to the tablet without first creating a local file,' providing clear context. It also notes that this tool converts Markdown to PDF, uniquely positioning it among siblings like remarkable_upload which expect pre-made files.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

remarkable_mkdirA

Create a new folder on the reMarkable tablet. 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.

Works in cloud and SSH modes (default; --read-only disables). Not available over the USB web interface (the firmware exposes no folder-create endpoint).

  • folder_name: Name of the new folder

  • parent: Parent folder path (default: root "/")

  • defer_restart: SSH only. Skip the xochitl restart so a batch of writes can refresh once via remarkable_refresh() instead of once per write. Sets "refresh_pending": true. Ignored in cloud mode.

ParametersJSON Schema
NameRequiredDescriptionDefault
parentNo/
folder_nameYes
defer_restartNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations only provide readOnlyHint (false), so the description carries full burden. It thoroughly discloses behavioral traits: mode differences, the need for xochitl restart in SSH mode, the effect of defer_restart, and the creation delay. No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear XML tags (usecase, instructions, parameters, examples). Every sentence adds value—no fluff or repetition. It is appropriately sized for a tool with three parameters and mode-specific behavior.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (multiple modes, three parameters, one required), the description covers all necessary context: mode availability, restart behavior, parent path defaults, and batch hint. An output schema exists but is not needed to explain return values; the description is complete without it.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate fully. It explains all three parameters in detail, including defaults, mode-specific behavior, and side effects (e.g., defer_restart sets refresh_pending). The examples show typical usage but do not edge cases.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Create') and resource ('a new folder'), and distinguishes this tool from siblings like remarkable_upload and remarkable_delete. The <usecase> tag clearly states the tool's primary function.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The <instructions> section explicitly describes when to use the tool, including mode-specific behavior (SSH vs cloud) and a clear exclusion: 'Not available over the USB web interface.' It also references the sibling tool remarkable_refresh for batch operations, providing guidance on when to use alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

remarkable_moveA

Move a document or folder to a different location. Moves a document or folder by updating its parent reference in the metadata. Find the document name with remarkable_browse() first.

Works in cloud and SSH modes (default; --read-only disables). Not available over the USB web interface.

  • document: Name or path of the document/folder to move

  • dest_folder: Destination folder path (use "/" for root)

  • defer_restart: SSH only. Skip the xochitl restart so a batch of writes can refresh once via remarkable_refresh() instead of once per write. Sets "refresh_pending": true. Ignored in cloud mode.

ParametersJSON Schema
NameRequiredDescriptionDefault
documentYes
dest_folderYes
defer_restartNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description transparently discloses that the operation is a mutation (readOnlyHint: false aligns with 'move') and explains the internal action: updating parent reference in metadata. It also reveals behavioral details for SSH mode, such as defer_restart skipping xochitl restart and setting 'refresh_pending': true. There is no contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with <usecase>, <instructions>, <parameters>, and <examples> sections, each serving a distinct purpose. Every sentence adds value—no fluff or repetition. It efficiently conveys purpose, prerequisites, mode restrictions, parameter details, and usage examples in a compact form.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists (relieving the description from explaining return values), the description covers all necessary aspects: purpose, prerequisites, mode compatibility, parameter semantics, and behavioral constraints. For a tool with 3 parameters and moderate complexity, this is fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema coverage is 0%, meaning no parameter descriptions exist in the schema. The description's <parameters> section fully compensates by explaining document ('Name or path'), dest_folder ('use "/" for root'), and defer_restart ('SSH only. Skip the xochitl restart...'). This adds substantial meaning beyond the schema's bare type definitions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states 'Move a document or folder to a different location', using a specific verb and resource. It also explains the underlying mechanism ('updating its parent reference') and clarifies it works for both documents and folders. This clearly differentiates it from sibling tools like remarkable_rename or remarkable_delete.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description instructs users to 'Find the document name with remarkable_browse() first', establishing a clear prerequisite. It specifies supported modes (cloud and SSH) and explicitly states unavailability over the USB web interface. It also explains when to use the defer_restart parameter (SSH only). However, it does not explicitly contrast when to use this tool versus alternatives like remarkable_rename, though the context of siblings makes it reasonably clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

remarkable_readA
Read-onlyIdempotent

Read and extract text content from a reMarkable document. Extracts content from a document with pagination to preserve context window.

Content types:

  • "text" (default): Full extracted text (PDF/EPUB content + annotations)

  • "raw": Original PDF/EPUB text only (no annotations). Works in every transport, as long as the source file is present (very large PDFs/EPUBs may not be synced to the cloud).

  • "annotations": Only annotations, highlights, and handwritten notes

Use pagination to read large documents without overwhelming context:

  • Start with page=1 (default)

  • Check "more" field - if true, there's more content

  • Use "next_page" value to get the next page

  • "total_pages" is the physical document count; "content_pages" is the extracted-text count used by page/more/next_page

  • "total_pages_known" reports whether the physical count was available. Raw PDF reads count the downloaded PDF directly. If a raw EPUB archive cannot be read, content still returns with total_pages=null.

  • If older USB firmware returns only a native PDF, "text" returns source text without annotations and "annotations" reports that the archive is unavailable instead of trying to parse the PDF as a zip.

Use grep to search for specific content on the current page.

OCR uses Google Vision when configured, otherwise Tesseract.

  • document: Document name or path (use remarkable_browse to find documents)

  • content_type: "text" (full), "raw" (PDF/EPUB only), "annotations" (notes only)

  • page: Extracted-content page number (default: 1). Physical document pages are reported separately as total_pages.

  • grep: Optional regex pattern to filter content (searches current page)

  • include_ocr: Enable handwriting OCR for annotations (default: False)

ParametersJSON Schema
NameRequiredDescriptionDefault
grepNo
pageNo
documentYes
include_ocrNo
content_typeNotext

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds rich behavioral detail: pagination mechanics (more, next_page, total_pages, content_pages, total_pages_known), content-specific behavior (text, raw, annotations), handling of older USB firmware, OCR provider fallback, and grep filtering. No contradictions with annotations. The description fully complements the safety profile.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but well-structured with XML-like tags (usecase, instructions, parameters, examples). It is front-loaded with the core purpose. Every section serves a purpose: pagination details avoid context overflow, parameter explanations prevent misuse, examples show typical invocations. Could be slightly more concise by merging the <instructions> bullet on pagination into fewer sentences, but the organization makes it easy to scan.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (5 parameters, pagination, content types, OCR, firmware edge cases), the description is thorough. It explains output fields like more, next_page, total_pages, content_pages, total_pages_known – and since an output schema exists, it doesn't need to enumerate all return values. It is slightly incomplete on error handling (what if document not found?) and does not mention rate limits or authentication requirements, but these may be covered externally. Overall, it leaves little ambiguity for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 0% description coverage, so the <parameters> section in the description carries the full burden. It explains each parameter with clear semantic meaning: 'document' (name or path, use browse to find), 'content_type' (list of options with outcomes), 'page' (extracted-content page vs physical pages), 'grep' (regex on current page), 'include_ocr' (handwriting OCR). The examples further illustrate parameter usage. This adds significant value beyond the raw schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a clear '<usecase>Read and extract text content from a reMarkable document.' This specifies a concrete verb and resource. The three content types ('text', 'raw', 'annotations') further clarify what is returned. The tool is well-distinguished from siblings like 'remarkable_image' (image extraction), 'remarkable_export' (export as file), and 'remarkable_search' (search across documents).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides detailed instructions on pagination and grep filtering but does not explicitly state when to use this tool over its siblings. For example, it does not contrast with 'remarkable_export' or 'remarkable_image' for specific use cases. The parameter section advises using 'remarkable_browse to find documents', which implies a prerequisite, but it lacks explicit 'when/when-not' guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

remarkable_recentA
Read-onlyIdempotent

Get your most recently modified documents. Returns documents sorted by modification date (newest first). Optionally includes a text preview of each document's content.

Use this to quickly find what you were working on recently.

Note: If REMARKABLE_ROOT_PATH is configured, only documents within that folder are included.

  • limit: Maximum documents to return (default: 10, max: 50 without preview, 10 with preview)

  • include_preview: Include first ~200 chars of text content (default: False)

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
include_previewNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so the safety profile is clear. The description adds valuable context: sorting order, preview behavior, and the ROOT_PATH filtering. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with usecase, instructions, parameters, and examples tags. It is front-loaded with the main purpose. While the XML-like tags add some verbosity, every section provides distinct value. Could be slightly more concise but not excessive.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 2 simple parameters, complete annotations, and an output schema, the description covers all necessary aspects: use case, parameter details with limits, example invocations, and an environmental note. Nothing essential is missing for a list tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description fully compensates by detailing 'limit' with default, max values (50 without preview, 10 with preview) and 'include_preview' with content length (~200 chars). Examples further illustrate usage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Get your most recently modified documents.' with explicit verb+resource. It further specifies sorting by modification date (newest first). This distinguishes it from sibling tools like remarkable_search (query-based) and remarkable_browse (file listing).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit guidance: 'Use this to quickly find what you were working on recently.' It also mentions the REMARKABLE_ROOT_PATH restriction. However, it does not explicitly list when to avoid this tool in favor of alternatives, though the sibling tools context implies distinctions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

remarkable_renameA

Rename a document or folder on the reMarkable tablet. Changes the display name of a document or folder by updating its metadata. Find the document name with remarkable_browse() first.

Works in cloud and SSH modes (default; --read-only disables). Not available over the USB web interface.

  • document: Current name or path of the document/folder

  • new_name: New display name

  • defer_restart: SSH only. Skip the xochitl restart so a batch of writes can refresh once via remarkable_refresh() instead of once per write. Sets "refresh_pending": true. Ignored in cloud mode.

ParametersJSON Schema
NameRequiredDescriptionDefault
documentYes
new_nameYes
defer_restartNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description goes well beyond the readOnlyHint=false annotation. It explains the core behavior: 'Changes the display name of a document or folder by updating its metadata.' It also details the defer_restart parameter's effect: 'Skip the xochitl restart so a batch of writes can refresh once via remarkable_refresh() instead of once per write. Sets refresh_pending: true. Ignored in cloud mode.' No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with dedicated sections (usecase, instructions, parameters, examples) and is front-loaded with the purpose. It is about 150 words, which is appropriate for the complexity. Minor room for trimming, but it's efficient and clear.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity, the description covers purpose, parameters, usage prerequisites, mode restrictions, and examples. It does not mention error handling or return values, but the presence of an output schema likely covers those. The description is complete enough for an AI agent to use the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description carries the full burden. The <parameters> section explains each parameter: document (current name or path), new_name (new display name), and defer_restart (SSH only, restart behavior, ignored in cloud mode). This adds critical meaning beyond the bare schema titles.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Rename a document or folder on the reMarkable tablet.' It uses a specific verb (rename) and resource (document or folder), and the context of sibling tools like remarkable_move, remarkable_delete, and remarkable_upload makes it easy to distinguish from alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides helpful usage guidance: 'Find the document name with remarkable_browse() first' and explains mode availability ('Works in cloud and SSH modes... Not available over the USB web interface'). It also describes the defer_restart parameter for batch operations. It does not explicitly list when not to use the tool, but the context is sufficient for an AI agent to decide appropriately.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

remarkable_statusA
Read-onlyIdempotent

Check connection status, active transport, and write capabilities. Returns authentication status, the active transport (cloud, local-dir, ssh, or usb-web), the document count, and a capability matrix describing what each transport can do. Use this to verify your connection, choose a transport, or troubleshoot.

Capability notes:

  • Export is available in every transport and creates only a bounded temporary local resource; it never modifies the tablet.

  • Cloud (default): full read/render/export/upload/mkdir/move/rename/delete — no device needed, works from anywhere your token is valid.

  • SSH: full capabilities over a local/USB connection to the tablet.

  • USB web: read, render, export, and upload (to root) only — the tablet's USB web interface firmware exposes no folder/move/rename/delete endpoints. For full write parity over a USB cable, use SSH mode pointed at the USB IP.

  • Local directory: fully offline read/render/export access to the desktop app's sync cache. Strictly read-only to avoid corrupting app-managed state. Write tools (upload/mkdir/move/rename/delete) are enabled by default; run with --read-only (or REMARKABLE_READ_ONLY=1) to expose a read-only server.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the bar is lower. The description adds valuable context about what each transport can and cannot do, how export works (temporary local resource, never modifies tablet), and how to enable write mode. However, it could detail the returned capability matrix structure more explicitly.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear XML tags, front-loaded summary, and detailed sections for instructions and examples. It's longer than strictly necessary for a zero-param tool but each section adds value for agent decision-making. Could be slightly more compact.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the zero parameters, present annotations, and existence of an output schema, the description provides everything needed: purpose, transport capabilities, troubleshooting context, and an example. The output schema handles return value details, so the description's coverage is complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters, schema coverage is 100%, so the description has no param details to provide. The baseline is 4, and the description includes helpful usage examples and context that compensates for the lack of parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The verb "check" paired with specific resources (connection status, active transport, write capabilities) makes the tool's purpose highly clear. It explicitly distinguishes itself from siblings which focus on file operations or rendering tasks.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit guidance on when to use this tool: to verify connection, choose a transport, or troubleshoot. It offers detailed capability breakdowns per transport and explains why write tools are disabled by default, helping the agent decide between alternative transports.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

remarkable_uploadA

Upload a PDF or EPUB file to the reMarkable tablet. 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 SSH, metadata created; supports parent_folder + document_name

  • USB web: uploaded via POST /upload. The multipart filename carries document_name, parent_folder is ignored, and the tablet web service chooses the destination folder.

Requires write mode (the default; disabled with --read-only).

  • file_path: Absolute path to the local PDF or EPUB file

  • parent_folder: Destination folder path on tablet (default: root "/"). Honored in cloud and SSH modes; ignored by the USB web interface.

  • document_name: Display name on tablet (default: filename without extension). Honored in every mode; USB web uses it as the uploaded filename.

  • defer_restart: SSH only. When True, skip the xochitl restart that normally makes the upload visible. Use this for every upload in a batch, then call remarkable_refresh() ONCE at the end. Each restart forces a full document-store rescan that briefly destabilises the SSH link, so deferring turns N restarts (and N races) into one. The response sets "refresh_pending": true while a refresh is owed. Ignored in cloud/USB modes (no xochitl).

ParametersJSON Schema
NameRequiredDescriptionDefault
file_pathYes
defer_restartNo
document_nameNo
parent_folderNo/

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description reveals extensive behavioral traits beyond the readOnlyHint=false annotation: requires write mode, transport-specific behaviors (USB web ignores parent_folder, SSH supports defer_restart), and the consequences of restarts (destabilisation, refresh_pending). This fully informs the agent of side effects and constraints.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with XML tags (usecase, instructions, parameters, examples), front-loading the core purpose. Every sentence adds value, covering transport modes, batch patterns, and edge cases without redundancy. It is efficient and highly readable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (4 parameters, 3 transports, batch behavior) and the presence of an output schema, the description is complete. It covers all parameters, transport-specific nuances, batch usage, and response hints, leaving no gaps for an agent to interpret.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description compensates fully by explaining each parameter: file_path (absolute path), parent_folder (default '/', transport-honored), document_name (default filename without extension), and defer_restart (SSH-only, batch usage, response flag). It adds critical meaning absent from the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states 'Upload a PDF or EPUB file to the reMarkable tablet', using a specific verb and resource. It clearly distinguishes from sibling tools like remarkable_image (for images) and remarkable_markdown_to_pdf (conversion) by specifying supported formats and transport modes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use the tool (uploading local files) and includes instructions for different transports and batch usage. However, it does not explicitly exclude alternatives like remarkable_image for image uploads, leaving a minor gap in when-not-to-use guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 8 tool updatesv2.1.0
    • Changedremarkable_delete2 fields changed
      • addedInput schema / properties / defer_restart
        Added value: +{
        +  "default": false,
        +  "title": "Defer Restart",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / permanent
        Added value: +{
        +  "default": false,
        +  "title": "Permanent",
        +  "type": "boolean"
        +}
    • Addedremarkable_export
    • Changedremarkable_image3 fields changed
      • addedInput schema / properties / render_merged / anyOf
        Added value: +[
        +  {
        +    "type": "boolean"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedInput schema / properties / render_merged / default
        Previous value: -falseNew value: +null
      • removedInput schema / properties / render_merged / type
        Removed value: -"boolean"
    • Addedremarkable_markdown_to_pdf
    • Changedremarkable_mkdir1 field changed
      • addedInput schema / properties / defer_restart
        Added value: +{
        +  "default": false,
        +  "title": "Defer Restart",
        +  "type": "boolean"
        +}
    • Changedremarkable_move1 field changed
      • addedInput schema / properties / defer_restart
        Added value: +{
        +  "default": false,
        +  "title": "Defer Restart",
        +  "type": "boolean"
        +}
    • Changedremarkable_rename1 field changed
      • addedInput schema / properties / defer_restart
        Added value: +{
        +  "default": false,
        +  "title": "Defer Restart",
        +  "type": "boolean"
        +}
    • Changedremarkable_upload1 field changed
      • addedInput schema / properties / defer_restart
        Added value: +{
        +  "default": false,
        +  "title": "Defer Restart",
        +  "type": "boolean"
        +}
  2. 12 tool updatesv0.1.0
    • First observedremarkable_browse
    • First observedremarkable_canvas
    • First observedremarkable_delete
    • First observedremarkable_image
    • First observedremarkable_mkdir
    • First observedremarkable_move
    • First observedremarkable_read
    • First observedremarkable_recent
    • First observedremarkable_rename
    • First observedremarkable_search
    • First observedremarkable_status
    • First observedremarkable_upload

TDQS

A4.6/5.0

Scored across 14 tools

Disambiguation5/5

Each tool targets a distinct operation: browsing, searching, reading text, exporting documents, rendering images, opening an interactive viewer, uploading, creating folders, moving, renaming, deleting, and checking status. While read, export, image, and canvas all retrieve content, their output formats and use cases are clearly different. No two tools have overlapping purposes.

Naming Consistency5/5

All 14 tools follow a consistent 'remarkable_verb' or 'remarkable_noun' pattern in snake_case. Verbs are imperative where applicable (upload, move, rename, delete, search, browse, read) and nouns (status, canvas) are clear. No mixing of camelCase or inconsistent prefixes. The pattern is predictable and intuitive.

Tool Count5/5

14 tools is well-scoped for a reMarkable tablet management server. It covers document retrieval (read, export, image, canvas), library navigation (browse, search, recent), file management (upload, mkdir, move, rename, delete), content creation (markdown_to_pdf), and status checking. Neither too sparse nor overwhelming.

Completeness4/5

The tool set provides full CRUD-like coverage for documents and folders, including browse, search, read, export, render, upload, create folder, move, rename, and delete. Minor gaps exist: no tool to list all tags independently, and annotation editing is absent, but these are not core to typical MCP workflows. Overall, the surface is thorough for the domain.

Maintenance

ActivityMaintained
ResponsivenessWithin a week

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to browse and read documents from a reMarkable tablet connected via USB, rendering PDF pages as images for the AI to see.
    Apache 2.0
  • A
    license
    A
    quality
    D
    maintenance
    Enables reading and searching handwritten notes from GoodNotes on macOS, providing OCR text, search, and notebook management tools for AI assistants.
    6
    MIT