remarkable
Access reMarkable tablet documents, notebooks, PDFs, and EPUBs. Use when the user wants to read, search, browse, or extract text from their reMarkable tablet. Supports handwriting OCR, typed text, annotations, highlights, and page rendering to PNG/SVG. Triggers: "reMarkable", "tablet notes", "handwritten notes", "remarkable read", "remarkable search", "remarkable browse".
适合你,如果你使用 reMarkable 平板并需要从电脑访问笔记和文档。
npx oh-my-skill add sammorrowdrums/remarkable-mcp/remarkablecurl -fsSL https://oh-my-skill.com/install.sh | bash -s -- sammorrowdrums/remarkable-mcp/remarkablenpx oh-my-skill verify sammorrowdrums/remarkable-mcp/remarkable怎么用
商店整理自技能原文 · 版本 e01f799 · 表述以原文为准装上后,Claude 可以读取、搜索、浏览你 reMarkable 平板上的文档、笔记本、PDF 和 EPUB,还能识别手写文字(需配置 Google Vision API),并将页面渲染为 PNG 或 SVG 图片。
当你提到“reMarkable”、“平板笔记”、“手写笔记”等关键词,或要求读取、搜索、浏览 reMarkable 内容时触发。
技能原文 SKILL.md
reMarkable Tablet
Access your reMarkable tablet as a second brain. Browse, search, read, and extract content from all documents including handwritten notes via OCR.
Setup
Add to openclaw.json:
{
"mcpServers": {
"remarkable": {
"command": "uvx",
"args": ["remarkable-mcp", "--usb"]
}
}
}
USB mode is recommended — connect via USB and enable "USB web interface" in tablet Settings → Storage. No subscription or developer mode needed.
Alternative Modes
SSH (requires developer mode):
{
"mcpServers": {
"remarkable": {
"command": "uvx",
"args": ["remarkable-mcp", "--ssh"]
}
}
}
Cloud (requires Connect subscription):
{
"mcpServers": {
"remarkable": {
"command": "uvx",
"args": ["remarkable-mcp"],
"env": {
"REMARKABLE_TOKEN": "your-token"
}
}
}
}
OCR Support
For handwriting OCR, add a Google Vision API key:
{
"mcpServers": {
"remarkable": {
"command": "uvx",
"args": ["remarkable-mcp", "--usb"],
"env": {
"GOOGLE_VISION_API_KEY": "your-api-key"
}
}
}
}
Tools
| Tool | Purpose | |------|---------| | remarkable_read | Read document content with text extraction, pagination, grep | | remarkable_browse | Browse folders, search by name, filter by tags | | remarkable_search | Multi-document content search with OCR | | remarkable_recent | List recently modified documents | | remarkable_image | Render pages as PNG or SVG | | remarkable_status | Check connection and device info |
Workflow
- Use
remarkable_browseorremarkable_searchto find documents - Use
remarkable_readto extract text content - Use
remarkable_imageto render visual pages - Use
pageparameter to paginate through multi-page documents