@openparachute/vault 0.7.3-rc.8 → 0.7.3-rc.9

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.
Files changed (2) hide show
  1. package/README.md +5 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -30,7 +30,7 @@ For remote access from Claude Desktop or mobile apps, see [Deployment](#deployme
30
30
 
31
31
  A server on port 1940 with:
32
32
 
33
- - **MCP** — 9 tools for AI agents (notes, tags, graph, vault info)
33
+ - **MCP** — tools for AI agents (notes, tags, graph, vault info, attachments)
34
34
  - **REST API** — Full CRUD for notes, tags, links, full-text search
35
35
  - **Wikilink auto-linking** — `[[wikilinks]]` in note content automatically create links in the graph
36
36
  - **Obsidian import/export** — Bidirectional interop with Obsidian vaults
@@ -252,12 +252,14 @@ parachute-vault backup --schedule daily # hourly | daily | weekly | manua
252
252
  parachute-vault backup status # schedule, last run, destinations, next run
253
253
  ```
254
254
 
255
- ## MCP tools (9)
255
+ ## MCP tools (13 core, + attachments + admin)
256
256
 
257
257
  **Notes**: `query-notes` (universal read — single by ID/path, filter, search, graph neighborhood), `create-note` (single or batch), `update-note` (single or batch — content, tags, links, metadata), `delete-note`
258
- **Tags**: `list-tags` (with optional schema detail), `update-tag` (upsert description + schema fields), `delete-tag`
258
+ **Tags**: `list-tags` (with optional schema detail), `update-tag` (upsert description + schema fields), `delete-tag`, `rename-tag`, `merge-tags`
259
259
  **Graph**: `find-path` (BFS between two notes)
260
260
  **Vault**: `vault-info` (get/update description + stats)
261
+ **Admin**: `prune-schema`, `doctor` (taxonomy/metadata integrity scan), `manage-token`
262
+ **Attachments** (2, present when the door wires an attachment-ticket provider — always true on this server): `request-attachment-upload`, `request-attachment-download` — mint a short-lived, single-use ticket a runtime's shell spends directly at `/vault/{name}/tickets/{id}`; bytes never pass through the tool call. See [`docs/HTTP_API.md`](./docs/HTTP_API.md#attachment-tickets-vault611--wave-1-bun-only).
261
263
 
262
264
  ### Vault descriptions
263
265
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openparachute/vault",
3
- "version": "0.7.3-rc.8",
3
+ "version": "0.7.3-rc.9",
4
4
  "description": "Agent-native knowledge graph. Notes, tags, links over MCP.",
5
5
  "module": "src/cli.ts",
6
6
  "type": "module",