vault-cortex 0.6.4 → 0.6.5

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 (3) hide show
  1. package/README.md +5 -5
  2. package/dist/env.js +10 -0
  3. package/package.json +4 -3
package/README.md CHANGED
@@ -9,8 +9,8 @@ npx vault-cortex@latest init
9
9
 
10
10
  Vault Cortex is a standalone, remote-capable MCP server that gives any AI
11
11
  agent hybrid search, task management, structured memory, and read/write
12
- access to your Obsidian vault — plus read-only access to its images,
13
- canvases, and data files — see the
12
+ access to your Obsidian vault — including its images, PDFs, canvases,
13
+ and data files — see the
14
14
  [full feature overview](https://github.com/aliasunder/vault-cortex#what-you-get).
15
15
  The server runs as a Docker container; this CLI scaffolds the config and
16
16
  manages the container so you don't have to.
@@ -68,7 +68,7 @@ npx vault-cortex@latest init --yes --vault-path /path/to/YourVault
68
68
  Pull the latest image, re-create the container, and verify health:
69
69
 
70
70
  ```bash
71
- npx vault-cortex upgrade
71
+ npx vault-cortex@latest upgrade
72
72
  ```
73
73
 
74
74
  Run it from the same directory where you ran `init` — it looks for your
@@ -94,7 +94,7 @@ Generate an [Obsidian Sync](https://obsidian.md/sync) auth token — needed for
94
94
  remote setups — without leaving the CLI:
95
95
 
96
96
  ```bash
97
- npx vault-cortex get-sync-token
97
+ npx vault-cortex@latest get-sync-token
98
98
  ```
99
99
 
100
100
  The command opens the Obsidian login inside Docker. Once you've signed in, it
@@ -103,7 +103,7 @@ Use `--dir <path>` to write the token straight into an existing `.env`
103
103
  instead:
104
104
 
105
105
  ```bash
106
- npx vault-cortex get-sync-token --dir ./vault-cortex
106
+ npx vault-cortex@latest get-sync-token --dir ./vault-cortex
107
107
  ```
108
108
 
109
109
  During `init --mode remote`, this flow is offered automatically when Docker
package/dist/env.js CHANGED
@@ -28,6 +28,11 @@ MAX_ASSET_BYTES=52428800
28
28
  # that accept larger tool responses.
29
29
  MAX_IMAGE_OUTPUT_BYTES=49152
30
30
 
31
+ # Maximum number of PDF pages to render as images when raw: true is set on
32
+ # vault_read_asset (default: 5). The per-page byte budget is MAX_IMAGE_OUTPUT_BYTES
33
+ # divided evenly across the rendered pages. Fewer pages = higher quality each.
34
+ MAX_PDF_RENDER_PAGES=5
35
+
31
36
  # Your IANA timezone — affects daily note resolution and memory timestamps.
32
37
  # TZ=America/New_York
33
38
 
@@ -130,6 +135,11 @@ MAX_ASSET_BYTES=52428800
130
135
  # that accept larger tool responses.
131
136
  MAX_IMAGE_OUTPUT_BYTES=49152
132
137
 
138
+ # Maximum number of PDF pages to render as images when raw: true is set on
139
+ # vault_read_asset (default: 5). The per-page byte budget is MAX_IMAGE_OUTPUT_BYTES
140
+ # divided evenly across the rendered pages. Fewer pages = higher quality each.
141
+ MAX_PDF_RENDER_PAGES=5
142
+
133
143
  # Enable or disable the memory layer (default: true).
134
144
  # Set to false to hide memory tools and skip About Me/ creation.
135
145
  MEMORY_ENABLED=true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vault-cortex",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "Set up a Vault Cortex MCP server for your Obsidian vault in one command: npx vault-cortex init",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -38,8 +38,9 @@
38
38
  "hybrid-search",
39
39
  "task-management",
40
40
  "semantic-search",
41
- "cross-encoder",
42
- "reranking",
41
+ "attachments",
42
+ "pdf",
43
+ "claude",
43
44
  "cli"
44
45
  ],
45
46
  "dependencies": {