proton-drive-mcp 1.0.21 → 1.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/README.md +17 -0
- package/package.json +2 -2
- package/smithery.yaml +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.22 — 2026-06-10
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **CI Node 20 deprecation** — publish workflow bumped to Node 22; CI matrix updated to [20, 22, 24] (drops EOL Node 18, adds Node 24)
|
|
7
|
+
- **`engines` field** — bumped from `>=18` to `>=20` (Node 18 is EOL since April 2025)
|
|
8
|
+
- **`smithery.yaml`** — added missing `drive_read_file` and `drive_write_file` tools; added `PROTON_DRIVE_SYNC_PATH` to configSchema
|
|
9
|
+
- **README** — added Local sync tool group, two missing tools in reference table, `PROTON_DRIVE_SYNC_PATH` env var documentation
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- **MCP dispatch layer tests** — confirmed-gate coverage for `drive_delete` and `drive_empty_trash`; env-var-guard coverage for `drive_read_file` (88 tests total)
|
|
13
|
+
|
|
3
14
|
## 1.0.21 — 2026-06-10
|
|
4
15
|
|
|
5
16
|
### Improved
|
package/README.md
CHANGED
|
@@ -222,6 +222,9 @@ proton-drive-cli share status /my-files/Projects
|
|
|
222
222
|
### Trash
|
|
223
223
|
`drive_list_trash` · `drive_trash` · `drive_restore` · `drive_empty_trash`
|
|
224
224
|
|
|
225
|
+
### Local sync (requires `PROTON_DRIVE_SYNC_PATH`)
|
|
226
|
+
`drive_read_file` · `drive_write_file`
|
|
227
|
+
|
|
225
228
|
---
|
|
226
229
|
|
|
227
230
|
## Tool reference
|
|
@@ -244,6 +247,8 @@ proton-drive-cli share status /my-files/Projects
|
|
|
244
247
|
| `drive_trash` | Move to trash | `path` |
|
|
245
248
|
| `drive_restore` | Restore from trash | `path` |
|
|
246
249
|
| `drive_empty_trash` | Permanently delete all trash ⚠️ | `confirmed: true` |
|
|
250
|
+
| `drive_read_file` | Read text file from local sync folder | `path` |
|
|
251
|
+
| `drive_write_file` | Write text file to local sync folder ⚠️ | `path`, `content` |
|
|
247
252
|
|
|
248
253
|
> ⚠️ **Destructive tools** require `confirmed: true`. Use `drive_list_trash` first so you know what will be deleted, then pass `confirmed: true` to proceed.
|
|
249
254
|
|
|
@@ -271,8 +276,20 @@ proton-drive-cli share status /my-files/Projects
|
|
|
271
276
|
|
|
272
277
|
---
|
|
273
278
|
|
|
279
|
+
## Environment variables
|
|
280
|
+
|
|
281
|
+
| Variable | Required | Description |
|
|
282
|
+
|---|---|---|
|
|
283
|
+
| `PROTON_DRIVE_SYNC_PATH` | Optional | Absolute path to your local Proton Drive sync folder root (e.g. `/Users/you/Proton Drive`). Required only for `drive_read_file` and `drive_write_file`. The Proton Drive desktop app must be running to sync written files to the cloud. |
|
|
284
|
+
| `PROTON_DRIVE_BIN` | Optional | Override the `proton-drive` binary name or path (default: `proton-drive`). Useful for non-standard installations. |
|
|
285
|
+
|
|
286
|
+
---
|
|
287
|
+
|
|
274
288
|
## Troubleshooting
|
|
275
289
|
|
|
290
|
+
**"PROTON_DRIVE_SYNC_PATH is not set"**
|
|
291
|
+
Add `"PROTON_DRIVE_SYNC_PATH": "/absolute/path/to/your/Proton Drive"` to your Claude Desktop MCP config env block. The path must point to the root folder that the Proton Drive desktop app syncs to.
|
|
292
|
+
|
|
276
293
|
**"proton-drive CLI not found"**
|
|
277
294
|
Download from [proton.me/download/drive/cli](https://proton.me/download/drive/cli/index.html) and ensure the binary is in your `PATH`. Verify with `which proton-drive`.
|
|
278
295
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "proton-drive-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.22",
|
|
4
4
|
"description": "MCP server and CLI that gives Claude full access to Proton Drive — upload, download, share, and manage your end-to-end encrypted files without leaving the conversation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"url": "https://github.com/googlarz/proton-drive-mcp/issues"
|
|
52
52
|
},
|
|
53
53
|
"engines": {
|
|
54
|
-
"node": ">=
|
|
54
|
+
"node": ">=20.0.0"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@modelcontextprotocol/sdk": "^1.11.0"
|
package/smithery.yaml
CHANGED
|
@@ -28,10 +28,15 @@ tools:
|
|
|
28
28
|
- drive_trash
|
|
29
29
|
- drive_restore
|
|
30
30
|
- drive_empty_trash
|
|
31
|
+
- drive_read_file
|
|
32
|
+
- drive_write_file
|
|
31
33
|
startCommand:
|
|
32
34
|
type: stdio
|
|
33
35
|
configSchema:
|
|
34
36
|
type: object
|
|
35
|
-
properties:
|
|
37
|
+
properties:
|
|
38
|
+
PROTON_DRIVE_SYNC_PATH:
|
|
39
|
+
type: string
|
|
40
|
+
description: "Absolute path to the root of your local Proton Drive sync folder. Required only for drive_read_file and drive_write_file. Example: /Users/you/Proton Drive"
|
|
36
41
|
commandFunction: |-
|
|
37
42
|
(_config) => ({ command: "npx", args: ["-y", "proton-drive-mcp"] })
|