Skip to main content
Glama

reMarkable MCP Server

Unlock the full potential of your reMarkable tablet as a second brain for AI assistants. This MCP server lets Claude, VS Code Copilot, and other AI tools read, search, and traverse your entire reMarkable library — including handwritten notes via OCR.

Why rm-mcp?

Your reMarkable tablet is a powerful tool for thinking, note-taking, and research. But that knowledge stays trapped on the device. This MCP server changes that:

  • Full library access — Browse folders, search documents, read any file

  • Typed text extraction — Native support for Type Folio and typed annotations

  • Handwriting OCR — Convert handwritten notes to searchable text

  • PDF & EPUB support — Extract text from documents, plus your annotations

  • Smart search — Find content across your entire library

  • Organise your library — Rename, move, and create folders (nothing is ever deleted)

  • Second brain integration — Use with Obsidian, note-taking apps, or any AI workflow

Whether you're researching, writing, or developing ideas, rm-mcp lets you leverage everything on your reMarkable through AI.


Related MCP server: io.github.praveensehgal/remarkable

Quick Install

Uses the reMarkable Cloud API. Requires a reMarkable Connect subscription.

uvx rm-mcp --setup

This opens your browser, prompts for the one-time code, and prints the ready-to-paste config for Claude Code and Claude Desktop.

Manual setup

1. Get a One-Time Code

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

2. Convert to Token

uvx rm-mcp --register YOUR_CODE

3. Add to your MCP client

Claude Code:

claude mcp add remarkable \
  -e REMARKABLE_TOKEN='<paste token from step 2>' \
  -e REMARKABLE_OCR_BACKEND=sampling \
  -- uvx rm-mcp@latest

Claude Desktop — add to claude_desktop_config.json (use full path to uvx, e.g. from which uvx):

{
  "mcpServers": {
    "remarkable": {
      "command": "/Users/YOU/.local/bin/uvx",
      "args": ["rm-mcp@latest"],
      "env": {
        "REMARKABLE_TOKEN": "<paste token from step 2>"
      }
    }
  }
}


Tools

Tool

Description

remarkable_read

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

remarkable_browse

Navigate folders in your library

remarkable_search

Search content across multiple documents

remarkable_recent

Get recently modified documents

remarkable_status

Check connection status

remarkable_image

Get PNG/SVG images of pages (supports OCR via sampling)

All tools are read-only and return structured JSON with hints for next actions.

📖 Full Tools Documentation

Smart Features

  • Multi-page read — Read all pages at once with pages="all", or a range like pages="1-3"

  • Grep auto-redirectgrep automatically finds and jumps to the matching page

  • Auto-redirect — Browsing a document path returns its content automatically

  • Auto-OCR — Notebooks with no typed text automatically enable OCR (opt out with auto_ocr=False)

  • Full-text search — Reading a document indexes it for fast future searches

  • Compact mode — Use compact_output=True to reduce token usage in responses

  • Batch search — Search across multiple documents in one call

  • Vision support — Get page images for visual context (diagrams, mockups, sketches)

  • Sampling OCR — Use client's AI for OCR on images (no API key needed)

Example Usage

# Read a document
remarkable_read("Meeting Notes")

# Read all pages at once
remarkable_read("Meeting Notes", pages="all")

# Read a range of pages
remarkable_read("Research Paper", pages="1-3")

# Search for keywords (auto-redirects to matching page)
remarkable_read("Project Plan", grep="deadline")

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

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

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

# Get recent documents with previews
remarkable_recent(limit=5, include_preview=True)

# Get a page image
remarkable_image("UI Mockup", page=1)

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

Resources

Documents are automatically registered as MCP resources:

URI Scheme

Description

remarkable:///{path}.txt

Extracted text content

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)

📖 Full Resources Documentation


OCR for Handwriting

rm-mcp uses sampling OCR — your MCP client's AI model extracts text from handwritten notes. No additional API keys or services needed.

How It Works

When you use include_ocr=True, rm-mcp sends page images to your client's LLM (Claude, GPT-4, etc.) via MCP sampling. The model reads the handwriting and returns the text.

Usage

# OCR on a page image
remarkable_image("Handwritten Notes", include_ocr=True)

# OCR when reading a notebook
remarkable_read("Journal", include_ocr=True)

Requirements

  • Your MCP client must support the sampling capability (VS Code + Copilot, Claude Desktop, etc.)

  • REMARKABLE_OCR_BACKEND=sampling (this is the default)


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": ["rm-mcp"],
      "env": {
        "REMARKABLE_TOKEN": "your-token",
        "REMARKABLE_ROOT_PATH": "/Work"
      }
    }
  }
}

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": ["rm-mcp"],
      "env": {
        "REMARKABLE_TOKEN": "your-token",
        "REMARKABLE_BACKGROUND_COLOR": "#FFFFFF"
      }
    }
  }
}

Supported formats:

  • #RRGGBB — RGB hex (e.g., #FFFFFF for white)

  • #RRGGBBAA — RGBA hex (e.g., #00000000 for transparent)

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

All Environment Variables

Variable

Default

Description

REMARKABLE_TOKEN

(required)

Auth token from uvx rm-mcp --setup

REMARKABLE_ROOT_PATH

/

Limit access to a specific folder

REMARKABLE_READ_ONLY

(off)

Set to 1 to disable renaming, moving and creating folders

REMARKABLE_OCR_BACKEND

sampling

OCR backend (sampling)

REMARKABLE_BACKGROUND_COLOR

#FBFBFB

Background color for rendered images (#RRGGBB or #RRGGBBAA)

REMARKABLE_CACHE_TTL

60

Collection cache TTL in seconds

REMARKABLE_COMPACT

(off)

Set to 1 or true to omit hints from responses globally

REMARKABLE_MAX_OUTPUT_CHARS

50000

Maximum characters in tool responses

REMARKABLE_PAGE_SIZE

8000

PDF/EPUB page size in characters

REMARKABLE_PARALLEL_WORKERS

5

Parallel workers for metadata fetching

REMARKABLE_INDEX_CONTENT

1

Set to 0 to disable background indexing of PDF/EPUB text

REMARKABLE_INDEX_PATH

~/.cache/rm-mcp/index.db

SQLite full-text search index location

REMARKABLE_INDEX_REBUILD

(off)

Set to 1 to force index rebuild on startup

Most users only need REMARKABLE_TOKEN. The rest are for advanced tuning.


Use Cases

Research & Writing

Use rm-mcp while working in an Obsidian vault or similar to transfer knowledge from your handwritten notes into structured documents. AI can read your research notes and help develop your ideas.

Daily Review

Ask your AI assistant to summarize your recent notes, find action items, or identify patterns across your journal entries.

Find that half-remembered note by searching across your entire library — including handwritten content.

Knowledge Management

Treat your reMarkable as a second brain that AI can access. Combined with tools like Obsidian, you can build a powerful personal knowledge system.


Documentation

Guide

Description

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/wavyrai/rm-mcp.git
cd rm-mcp
uv sync --all-extras
uv run pytest test_server.py -v

📖 Development Guide


License

MIT


Built with rmscene, PyMuPDF, and inspiration from ddvk/rmapi.

Available Tools

9 tools
remarkable_browseA
Read-onlyIdempotent

Browse your reMarkable library folders. List contents of a folder on your reMarkable tablet.

  • Use path="/" for root folder

  • Use path="/FolderName" to navigate into folders

  • If you browse to a document path, it auto-redirects to remarkable_read

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

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

To search by name or content, use remarkable_search() instead.

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

ParametersJSON Schema
NameRequiredDescriptionDefault
pathNo/
compact_outputNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, so the safety profile is covered. The description adds valuable behavioral context beyond annotations: the auto-redirect to remarkable_read for document paths, the list of result fields (names, types, paths, dates), and the root-path scoping. It does not describe edge cases like empty folders or permission errors, but the core behavior is transparent.

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-organized with sections (usecase, instructions, parameters, examples) and uses clear formatting. It is not overly verbose and every sentence adds value. It could be slightly tighter (e.g., merging the root path note into the path guidance), but the structure is effective and front-loads the core action.

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

Completeness3/5

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

Given the output schema exists, the description need not explain return structure, and it does mention result fields anyway. It covers the primary path parameter and the auto-redirect behavior, which is important. However, the compact_output parameter is undocumented, and there is no mention of pagination or large-folder behavior. For a read-only browsing tool with two parameters, the missing parameter is a notable completeness gap.

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

Parameters2/5

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

The schema has two parameters: path and compact_output, but the description only documents path. The schema description coverage is 0% per context signals, so the description carries the full burden. It explains path usage with examples and defaults, but compact_output is completely omitted—an agent would not know it exists or what it does. This is a significant gap for one of two 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 description opens with a clear usecase: 'Browse your reMarkable library folders' and explicitly states 'List contents of a folder on your reMarkable tablet.' It distinguishes itself from siblings by noting that browsing to a document path redirects to remarkable_read, and it names remarkable_search as the alternative for name/content search. The verb-resource pairing is specific and unambiguous.

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 instructions: how to use path for root and subfolders, the behavior of document paths (auto-redirect to read), and the REMARKABLE_ROOT_PATH constraint. It also directly points to remarkable_search() when searching is needed, giving clear when-to-use vs. when-not-to-use guidance. No alternative is left ambiguous.

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

remarkable_create_folderA

Create a new empty folder on your reMarkable. Creates one folder. The parent folder must already exist — create nested folders one level at a time.

  • path: Full path of the folder to create, e.g. "/Work/Archive", or just a name to create it at the top level

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYes
compact_outputNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.9/5.0
Behavior3/5

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

Annotations are minimal (no idempotent, no destructive hints), so the description carries burden. It discloses the parent-existence requirement and the one-level-at-a-time limitation. It does not state behavior on duplicate folder names or parent missing (e.g., error handling). It also omits the compact_output parameter's effect. This is a moderate gap.

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. It is front-loaded with the purpose, and every sentence adds value. The examples are practical. No unnecessary fluff. Concise and efficient.

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

Completeness3/5

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

The tool has an output schema (not shown), so return format is presumably covered. However, the description misses the optional 'compact_output' parameter entirely, which affects how results are presented. It also does not mention failure conditions (e.g., if parent doesn't exist or folder already exists). For a simple tool, these are notable omissions.

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

Parameters3/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 fully explain parameters. It explains 'path' well with format and examples (full path or top-level name). However, it entirely ignores 'compact_output', which is present in the schema. Thus, one parameter is well-documented but the other is absent, leaving the agent without guidance on output format.

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 states a specific action ('Create a new empty folder') with a clear resource ('on your reMarkable'). It distinguishes from siblings (browse, rename, move, etc.) through the verb 'create' and the folder-specific context. Examples clarify usage. This is unambiguous.

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 a clear prerequisite: the parent folder must already exist, and it limits creation to one level at a time. It implies when to use (to create a folder) and the constraints. However, it does not explicitly contrast with sibling tools, but no sibling is for creation, so the guidance is adequate.

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

Response Formats

By default, images are returned inline:

  • PNG: Returned as ImageContent with base64-encoded data

  • SVG: Returned as EmbeddedResource with TextResourceContents containing 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. When REMARKABLE_OCR_BACKEND=sampling is set and the client supports sampling, the client's own LLM will be used for OCR (no API keys needed).

Note: This works best with notebooks and handwritten content. For PDFs/EPUBs, the annotations layer is rendered (not the underlying PDF content).

  • 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). When REMARKABLE_OCR_BACKEND=sampling, uses the client's LLM via MCP sampling.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNo
documentYes
backgroundNo
include_ocrNo
compatibilityNo
output_formatNopng
compact_outputNo

TDQS

A4.5/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, and the description adds rich context beyond them: exact response formats (PNG as ImageContent, SVG as EmbeddedResource), the compatibility flag for clients without embedded-resource support, OCR behavior and the REMARKABLE_OCR_BACKEND=sampling path, and PDF/EPUB annotation-layer rendering. 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.

Conciseness4/5

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

Well-structured with usecase/instructions/parameters/examples tags, front-loaded with the purpose, and examples add real value. Slightly long, but the dense instructions are organized in scannable subsections (Response Formats, OCR, PDF behavior) so every sentence earns its place.

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?

With no output schema and 0% schema coverage, the description carries a heavy burden and mostly delivers: it explains return formats, defaults, OCR, PDF caveats, and includes 7 illustrative examples. The sole completeness gap is the undocumented compact_output parameter, which an agent could not know how to use.

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 — and it does thoroughly: document (with browse pointer), page (1-indexed default), background (hex format, default, env override, transparent), output_format, compatibility, and include_ocr all get meaningful semantics. However, the input schema's compact_output parameter is not mentioned anywhere in the description, leaving one of seven parameters undocumented in both schema and description.

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 a specific verb+resource ('Get an image of a specific page from a reMarkable document') that clearly distinguishes it from siblings like remarkable_read (text extraction) and remarkable_browse (document tree). The instruction that it provides 'visual context that text extraction might miss' further disambiguates it from remarkable_read.

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 lists concrete use cases (viewing diagrams, sketches, mockups, wireframes) and a clear when-not: 'works best with notebooks... For PDFs/EPUBs, the annotations layer is rendered (not the underlying PDF content)'. It also routes to remarkable_browse for finding documents. However, it never explicitly names remarkable_read as the alternative for text-only extraction, leaving that exclusion implicit.

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 into another folder. Changes where something lives. Use "/" as the destination to move it to the top level. The item keeps its name and contents.

  • item: Name or full path of the document or folder to move

  • destination: Path of the destination folder, or "/" for the top level

ParametersJSON Schema
NameRequiredDescriptionDefault
itemYes
destinationYes
compact_outputNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior4/5

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

Annotations mark this as a non-read, non-destructive operation. The description adds value by stating the item keeps its name and contents and explaining the '/' syntax, which goes beyond what annotations reveal. It does not cover error cases or permission requirements, but the core behavior is disclosed.

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-organized with usecase, instructions, parameters, and examples. Every section serves a purpose, and the examples are especially useful for an agent to pattern-match calls. No filler or redundancy.

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?

An output schema exists, so return values are covered. The description addresses the main behavior, the top-level special case, and parameter formats. It omits the compact_output parameter and error handling, but for a straightforward move tool this is largely sufficient.

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 coverage, the description must compensate. It explains 'item' as a name or full path and 'destination' as a folder path or '/' for top level, adding real meaning to the bare string types. However, the third parameter 'compact_output' is entirely unmentioned, leaving a gap.

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 states a specific verb ('move') and resource ('document or folder'), and clearly differentiates from siblings like remarkable_rename and remarkable_create_folder by naming the action. The usecase tag reinforces the core purpose without ambiguity.

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?

Instructions clarify how to use the tool, including the special '/' destination for top-level moves and the preservation of name/contents. It does not explicitly list when not to use it or alternative tools, but the context is clear enough for an agent to decide when this is appropriate.

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 (annotations, highlights, OCR)

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

Reading modes:

  • Single page: page=N returns the real page N (PDF pages, EPUB sections, notebook pages)

  • Multi-page: pages="all", pages="1-3", pages="2,4,5" — returns multiple pages concatenated

  • grep auto-redirects to the first matching page when no match on current page

When REMARKABLE_OCR_BACKEND=sampling is set and the client supports sampling, OCR will use the client's LLM for handwriting recognition (no API keys needed).

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

  • content_type: "text" (full), "annotations" (notes only)

  • page: Page number for single-page mode (default: 1)

  • pages: Multi-page spec: "all", "1-3", "2,4,5" (overrides the page param)

  • grep: Regex pattern to filter content (auto-redirects to matching page)

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

  • auto_ocr: Auto-retry with OCR on empty notebooks (default: True, set False to skip)

ParametersJSON Schema
NameRequiredDescriptionDefault
grepNo
pageNo
pagesNo
auto_ocrNo
documentYes
include_ocrNo
content_typeNotext
compact_outputNo

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?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds substantial behavioral context: pagination to preserve context, content type selection, multi-page specs, grep auto-redirect, and OCR behavior depending on environment. This goes well beyond what annotations provide.

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?

Well-structured with usecase, instructions, parameters, and examples. Each section is purposeful, front-loaded with the core purpose, and avoids redundancy. Appropriate length for a complex tool.

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?

Covers all major behaviors: pagination, content types, grep, OCR, and multi-page modes. The only missing detail is the compact_output parameter, which is not mentioned. Output schema exists, so return values are documented elsewhere. Overall very complete for a tool with 8 parameters.

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's parameter section is essential. It explains document, content_type, page, pages, grep, include_ocr, and auto_ocr with clear semantics and examples. However, it omits the 'compact_output' parameter present in the schema, leaving a small gap in meaning.

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?

States a specific verb and resource: 'Read and extract text content from a reMarkable document.' Clearly distinguishes from siblings like remarkable_browse (finding documents) and remarkable_search (searching), making it unambiguous for an agent.

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?

Provides detailed instructions on content types, reading modes, pagination, and grep behavior, plus a note to use remarkable_browse for finding documents. It does not explicitly list when NOT to use this tool versus alternatives like search, but the usecase and examples give enough context for an agent to select appropriately.

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. Previews are served from the local index when available (no cloud download).

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
compact_outputNo
include_previewNo

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?

Beyond the readOnlyHint/idempotent annotations, the description adds that previews are served from the local index (no cloud download), the sorting order, the limit behavior (max 50 without preview, 10 with preview), and the REMARKABLE_ROOT_PATH constraint. This gives an agent a solid model of what happens when the tool is invoked.

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. It is front-loaded with the core purpose and keeps each section tight. No redundant sentences.

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 that an output schema exists, the description doesn't need to explain return values. It covers the main behaviors, constraints, and usage. The only gap is the undocumented compact_output parameter, but overall it's nearly complete for a read-only tool.

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

Parameters3/5

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

The schema has 0% description coverage, so the description must explain all parameters. It explains limit and include_preview clearly, but omits the compact_output parameter entirely. While examples show usage, the missing parameter prevents a complete understanding.

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 states the specific verb 'Get' and resource 'most recently modified documents', and clarifies sorting behavior. This clearly distinguishes it from siblings like remarkable_search or remarkable_read.

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 instruction 'Use this to quickly find what you were working on recently' provides a clear usage scenario. It also notes the REMARKABLE_ROOT_PATH condition, but does not explicitly mention alternative tools or when not to use this tool.

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 your reMarkable. Changes the visible name. Contents, annotations and page data are untouched.

The change is committed as a single atomic update, and the response includes the previous library state so it can be undone.

  • item: Current name or full path of the document or folder

  • new_name: The new name (just the name, not a path)

ParametersJSON Schema
NameRequiredDescriptionDefault
itemYes
new_nameYes
compact_outputNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior4/5

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

Annotations include readOnlyHint=false and destructiveHint=false, indicating it's a mutation but not destructive. The description adds valuable context: it explicitly states that contents, annotations, and page data are untouched, and it mentions atomicity and that the response includes the previous library state for undo. This goes beyond the annotations and provides useful behavioral transparency, warranting a 4.

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 a usecase, instructions, parameters, and examples. It is front-loaded with the primary purpose, and every section adds value. The examples clarify usage. It is concise and efficient with no unnecessary filler, earning a 5.

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 operation's effect, atomicity, undo capability, and the main parameters. An output schema exists, so the description need not explain return values. However, it omits the compact_output parameter and does not address error conditions or edge cases (e.g., item not found). Given the tool's moderate complexity and that most critical information is present, a 4 is justified.

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

Parameters3/5

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

The schema description coverage is 0%, so the description must compensate. It does explain the two required parameters (item and new_name) with useful semantics ('Current name or full path' and 'just the name, not a path'), which is helpful. However, it does not mention the optional 'compact_output' parameter that appears in the schema. Since one parameter is undocumented, the compensation is incomplete, so a 3 is appropriate.

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

Purpose4/5

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

The description clearly states the purpose: 'Rename a document or folder on your reMarkable.' This is a specific verb (rename) and resource (document/folder), which is clear. However, it does not explicitly distinguish itself from sibling tools like remarkable_move, which might involve similar operations. The name and description are clear enough, but no sibling differentiation is present, so a 4 is appropriate.

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 instructions provide context about the operation ('Changes the visible name. Contents, annotations and page data are untouched.') but do not explicitly state when to use this tool versus alternatives. There is no mention of exclusions or alternative tools. The usage is implied rather than explicit, so a 3 is given.

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 and authentication with reMarkable Cloud. Returns authentication status and diagnostic information. Use this to verify your connection or troubleshoot issues. Includes index statistics when available.

  • remarkable_status()

  • remarkable_status(compact_output=True) # Omit hints

ParametersJSON Schema
NameRequiredDescriptionDefault
compact_outputNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds that it includes 'index statistics when available' and mentions diagnostic info, which is useful extra context beyond the annotations, but it does not detail the exact output or behavior further.

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, and examples. It is front-loaded with purpose and each section earns its place without redundancy.

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?

For a simple diagnostic tool with an output schema present, the description covers the purpose, when to use, and a usage example. It does not explain return values, but that is covered by the output schema. Slightly more detail on the 'index statistics' could help, but it is not essential.

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

Parameters3/5

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

The schema has no description for compact_output (coverage 0%), but the example 'compact_output=True # Omit hints' provides some meaning, indicating it controls whether hints are shown. This is minimal but does add value beyond the schema's bare boolean type.

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 checks connection status and authentication with reMarkable Cloud, using specific verbs and resource. It is distinct from siblings which handle browsing, reading, renaming, etc., so an agent can easily tell them apart.

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 explicitly says 'Use this to verify your connection or troubleshoot issues,' giving clear context for when to use. It does not mention alternatives or when not to use, but no overlap exists with siblings, so exclusion is not critical.

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. 9 tool updatesv0.7.0
    • First observedremarkable_browse
    • First observedremarkable_create_folder
    • First observedremarkable_image
    • First observedremarkable_move
    • First observedremarkable_read
    • First observedremarkable_recent
    • First observedremarkable_rename
    • First observedremarkable_search
    • First observedremarkable_status

TDQS

A4.1/5.0

Scored across 9 tools

Disambiguation5/5

Each tool targets a distinct action on the reMarkable system: browsing, reading, searching, rendering images, renaming, moving, creating folders, recent items, and status. There's no functional overlap or ambiguity between tools.

Naming Consistency4/5

All tools share a clear 'remarkable_' prefix with a descriptive word, which is predictable and readable. However, not all names follow a strict verb_noun pattern (e.g., 'image', 'recent', 'status' are nouns/adjectives rather than verbs), so it loses a point for slight inconsistency.

Tool Count5/5

With 9 tools, the set is well-scoped for managing a reMarkable device. Each tool serves a distinct purpose and there are no redundant or unnecessary entries, matching the typical 3-15 tool range.

Completeness4/5

The tool surface covers the core workflows: browsing, reading, searching, visualizing, organizing (rename/move/create folder), and status. The main gap is the absence of a delete/trash tool, which prevents full lifecycle management but is not a critical failure for the primary use cases.

Maintenance

ActivityMaintained
ResponsivenessUnresponsive

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