经 AI Skill Hub 精选评估,remarkable-mcp 获评「推荐使用」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
用于访问reMarkable平板数据,同步文件,提取文本等功能。
remarkable-mcp 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
用于访问reMarkable平板数据,同步文件,提取文本等功能。
remarkable-mcp 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/SamMorrowDrums/remarkable-mcp
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"remarkable-mcp": {
"command": "npx",
"args": ["-y", "remarkable-mcp"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 remarkable-mcp 执行以下任务... Claude: [自动调用 remarkable-mcp MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"remarkable-mcp": {
"command": "npx",
"args": ["-y", "remarkable-mcp"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
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.
Set REMARKABLE_OCR_BACKEND in your MCP config:
{
"env": {
"REMARKABLE_OCR_BACKEND": "sampling"
}
}
Options: sampling, google, tesseract, auto
<details> <summary>📖 Sampling OCR (No API Key)</summary>
Uses your MCP client's AI model for OCR. Works with clients that support MCP sampling (VS Code + Copilot, Claude Desktop, etc.).
Pros: - No additional API keys needed - Quality depends on your client's model (GPT-4, Claude, etc.) - Private — handwriting stays local to your client
Cons: - Only available with sampling-capable clients - Falls back to Google Vision (if API key configured) or Tesseract if sampling unavailable
</details>
<details> <summary>📖 Google Cloud Vision</summary>
Provides consistently excellent handwriting recognition.
Setup: 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.
📖 Full Google Vision Setup Guide
</details>
<details> <summary>📖 Tesseract (Fallback)</summary>
Open-source OCR designed for printed text. Poor results with handwriting, but useful as an offline fallback.
```bash
```python
```python
remarkable_image("Handwritten Notes", include_ocr=True)
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 |
The retry logic honours the Retry-After header from rate-limited responses — both the numeric (seconds) form and the HTTP-date form (which Cloudflare, fronting the reMarkable cloud, often sends) — capped at 20 seconds. Auth failures (401) are not retried — they trigger automatic token renewal instead.
---
Connect via USB and enable the web interface in your tablet's Storage Settings.
%22%2C%22password%22%3Atrue%7D%5D&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22remarkable-mcp%22%2C%22--usb%22%5D%2C%22env%22%3A%7B%22GOOGLE_VISION_API_KEY%22%3A%22%24%7Binput%3Agoogle_vision_api_key%7D%22%7D%7D)
%22%2C%22password%22%3Atrue%7D%5D&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22remarkable-mcp%22%2C%22--usb%22%5D%2C%22env%22%3A%7B%22GOOGLE_VISION_API_KEY%22%3A%22%24%7Binput%3Agoogle_vision_api_key%7D%22%7D%7D&quality=insiders)
Setup: 1. Connect your reMarkable via USB 2. On your tablet: Settings → Storage → Enable "USB web interface" 3. Install via the button above
Why USB Web? - ✅ Fast offline access over USB - ✅ No subscription required - ✅ Simple — just enable in Storage Settings
<details> <summary>📋 Manual USB Web Configuration</summary>
Add to .vscode/mcp.json:
{
"servers": {
"remarkable": {
"command": "uvx",
"args": ["remarkable-mcp", "--usb"],
"env": {
"GOOGLE_VISION_API_KEY": "your-api-key"
}
}
}
}
Troubleshooting: - 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
</details>
---
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.
---
| Feature | SSH Mode | USB Web | Cloud API |
|---|---|---|---|
| Speed | ⚡ 10-100x faster | ⚡ Fast | ⚡ Fast (parallel + cached) |
| Offline | ✅ Yes | ✅ Yes | ❌ No |
| Subscription | ✅ Not required | ✅ Not required | ❌ Connect required |
| Raw files | ✅ PDFs, EPUBs | ✅ PDFs | ✅ PDFs, EPUBs |
| Upload | ✅ (default) | ✅ (default) | ✅ (default) |
| mkdir/move/rename/delete | ✅ (default) | ❌ | ✅ (default) |
| Setup | Developer mode | Enable in Settings | One-time code |
---
该项目提供了一个开源的MCP工具,用于访问reMarkable平板数据,同步文件,提取文本等功能,值得关注。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:remarkable-mcp 的核心功能完整,质量良好。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | remarkable-mcp |
| Topics | mcpremarkable-tabletpython |
| GitHub | https://github.com/SamMorrowDrums/remarkable-mcp |
| License | MIT |
| 语言 | Python |
收录时间:2026-06-12 · 更新时间:2026-06-12 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端