Supernote
NPM · SUPERNOTE-MCP · SCANNED AUG 3
Capture the screen, read/render notes, and upload files on a Ratta Supernote from an AI agent.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security100
- No malware found by supply-chain analysis.Pass
- No known CVEs affecting this package version or its production dependencies.Pass
- No install/post-install scripts declared.Pass
- No production dependencies, so there is no dependency health to assess. View diagnostics → Pass
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 61 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability67
- AI-judged instruction clarity (excellent).Pass
- Context-footprint check failed: tool/resource definitions use about 1392 tokens (~278/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
- Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Unverified: 1 category
A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · supernote-mcp
claude mcp add ridget-supernote-mcp -- npx -y supernote-mcp
codex mcp add ridget-supernote-mcp -- npx -y supernote-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"ridget-supernote-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"supernote-mcp"
],
"enabled": true
}
}
} openclaw mcp add ridget-supernote-mcp --command npx --arg -y --arg supernote-mcp
mcp_servers:
ridget-supernote-mcp:
command: "npx"
args: ["-y", "supernote-mcp"] {
"mcpServers": {
"ridget-supernote-mcp": {
"command": "npx",
"args": [
"-y",
"supernote-mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 2 Aug 26 +15
- Malware scan: unverified → pass ▲ security
- 31 Jul 26 −9
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 30 Jul 26 −18
- Malware scan: pass → unverified ▼ security
- 27 Jul 26 +32
- Tool coverage: unverified → 100 ▲ functional
- First check of Tool coverage: 100 functional
- First check of Schema quality: fail functional
- First check of Schema quality: excellent functional
- First check of Schema quality: fail functional
- 26 Jul 26 47
First indexed and scored.
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 0 packages
0 packages in the resolved dependency tree.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
supernote_list_files List Supernote files ~224
List the notebooks, documents, and folders saved on the user's Supernote e-ink tablet, over its Browse & Access Wi-Fi file server. Call this to find a saved note before reading or rendering it — for example when the user says "read my notes from yesterday" or "what's on my Supernote?". Returns each entry's name, whether it is a folder, size, date, and a `path` to pass to supernote_read_note / supernote_render_note (or back into this tool to descend into a folder). Requires Browse & Access enabled on the device (swipe down → Browse & Access), same Wi-Fi, no VPN/proxy.
| Name | Type | Req | Description |
|---|---|---|---|
| ip | string | — | Device IP (optionally with :port) shown on the Supernote's mirroring or Browse & Access popup. Defaults to the SUPERNOTE_IP environment variable; if unset, the device is found by a LAN scan. |
| path | string | — | Folder to list, as a `path`/`uri` from a previous listing. Defaults to the root. |
No output schema declared.
No examples provided.
supernote_read_note Read a Supernote note as text ~232
Read the recognized handwriting and typed text from a saved Supernote note (.note file) as plain text. Call this when the user wants the CONTENTS of a specific note — e.g. "read my notes from yesterday", "summarise my meeting notes", "what did I write in <note>". Use supernote_list_files first to get the note's `path`. Returns recognized text per page — cheap and accurate, so prefer it over images when the user wants the words. If the note has no recognized text (on-device handwriting recognition wasn't run), it says so; use supernote_render_note for page images instead. Requires Browse & Access enabled, same Wi-Fi, no VPN/proxy.
| Name | Type | Req | Description |
|---|---|---|---|
| ip | string | — | Device IP (optionally with :port) shown on the Supernote's mirroring or Browse & Access popup. Defaults to the SUPERNOTE_IP environment variable; if unset, the device is found by a LAN scan. |
| path | string | yes | The note's `path` from supernote_list_files, e.g. /Note/obsidian/meeting.note. |
No output schema declared.
No examples provided.
supernote_render_note Render Supernote note pages as images ~234
Render the pages of a saved Supernote note (.note file) as images. Call this when the user wants to SEE a note — sketches, diagrams, drawings — or when supernote_read_note reported the note has no recognized text. Use supernote_list_files first to get the note's `path`. By default renders all pages (capped); pass `pages` to select specific 1-indexed pages. Prefer supernote_read_note when the user only wants the words (text is far cheaper than images). Requires Browse & Access enabled, same Wi-Fi, no VPN/proxy.
| Name | Type | Req | Description |
|---|---|---|---|
| ip | string | — | Device IP (optionally with :port) shown on the Supernote's mirroring or Browse & Access popup. Defaults to the SUPERNOTE_IP environment variable; if unset, the device is found by a LAN scan. |
| pages | array | — | 1-indexed page numbers to render. Defaults to all pages (capped at 20). |
| path | string | yes | The note's `path` from supernote_list_files, e.g. /Note/obsidian/sketch.note. |
No output schema declared.
No examples provided.
supernote_snapshot Supernote snapshot ~185
Capture the user's Supernote e-ink tablet's LIVE screen right now (its screen mirror) and return it as an image. Call this when the user refers to what's currently on the tablet — what they just sketched, drew, or handwrote during a whiteboarding/planning session ("what did I just draw?", "look at my screen", "see my sketch"). This is the current screen, NOT a saved file: to read or show a notebook saved earlier, use supernote_list_files then supernote_read_note (text) or supernote_render_note (images). Requires Screen Mirroring enabled on the device, with the device and this host on the same Wi-Fi and no VPN/proxy.
| Name | Type | Req | Description |
|---|---|---|---|
| ip | string | — | Device IP (optionally with :port) shown on the Supernote mirroring popup. Defaults to the SUPERNOTE_IP environment variable. |
No output schema declared.
No examples provided.
supernote_upload_file Upload a file to the Supernote ~248
Upload a local file to the user's Supernote e-ink tablet over its Browse & Access Wi-Fi server. Use this to put a document on the device for the user to read or annotate — e.g. a PDF or file the agent just created or downloaded. This WRITES to the device. Give the local file `path`; optionally a target `directory` on the device (a `path` from supernote_list_files, default root) and a `filename` to save as (default: the local file's name). Requires Browse & Access enabled, same Wi-Fi, no VPN/proxy.
| Name | Type | Req | Description |
|---|---|---|---|
| directory | string | — | Target folder on the device (a `path` from supernote_list_files). Defaults to the root. |
| filename | string | — | Name to save the file as on the device. Defaults to the local file's name. |
| ip | string | — | Device IP (optionally with :port) shown on the Supernote's mirroring or Browse & Access popup. Defaults to the SUPERNOTE_IP environment variable; if unset, the device is found by a LAN scan. |
| path | string | yes | Local filesystem path of the file to upload. |
No output schema declared.
No examples provided.