compendium-mcp 0.5.0 → 0.6.0

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 +7 -1
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -235,6 +235,12 @@ Same `command` / `args` / `env` as Cursor, in Claude’s MCP config file.
235
235
 
236
236
  ### Local Cargo binary (developers)
237
237
 
238
+ After code changes, rebuild and **reload MCP** so the live tool schema matches source (avoid stale `npx`/Release binaries during development):
239
+
240
+ ```bash
241
+ cargo build --release --features real-tokens,http
242
+ ```
243
+
238
244
  ```json
239
245
  {
240
246
  "mcpServers": {
@@ -284,7 +290,7 @@ Point an MCP streamable-HTTP client at that URL (e.g. `StreamableHttpClientTrans
284
290
  | `COMPENDIUM_ARCHIVE_MAX_UNCOMPRESSED` | `4194304` | Max total uncompressed bytes for pack/unpack |
285
291
  | `COMPENDIUM_ARCHIVE_MAX_FILES` | `50` | Max files per archive |
286
292
  | `COMPENDIUM_SKILL_TTL_MS` | `300000` | Soft TTL (ms) on skill `resources/read` responses |
287
- | `COMPENDIUM_CACHE_DIR` | _(unset)_ | Persist session cache (chunks/cache keys) across restarts; default size cap 64 MiB |
293
+ | `COMPENDIUM_CACHE_DIR` | _(unset)_ | Persist session cache (chunks/cache keys) across restarts; default size cap 64 MiB. Multiple MCP processes may share one dir — **no** cross-process lock; TTL/eviction are best-effort. Prefer a dedicated dir per user/host. |
288
294
  | `COMPENDIUM_CACHE_MAX_BYTES` | _(unset / 64MiB with dir)_ | Soft cap on total cached payload bytes |
289
295
  | `RUST_LOG` | `compendium=info` | Logs on **stderr** only |
290
296
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compendium-mcp",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "MCP server that compresses, summarizes, and filters context to minimize LLM token usage",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -38,13 +38,13 @@
38
38
  "prepare": "node npm/scripts/link-bins.js"
39
39
  },
40
40
  "optionalDependencies": {
41
- "compendium-mcp-darwin-arm64": "0.5.0",
42
- "compendium-mcp-darwin-x64": "0.5.0",
43
- "compendium-mcp-linux-x64": "0.5.0",
44
- "compendium-mcp-linux-x64-musl": "0.5.0",
45
- "compendium-mcp-linux-arm64": "0.5.0",
46
- "compendium-mcp-win32-x64": "0.5.0",
47
- "compendium-mcp-win32-arm64": "0.5.0"
41
+ "compendium-mcp-darwin-arm64": "0.6.0",
42
+ "compendium-mcp-darwin-x64": "0.6.0",
43
+ "compendium-mcp-linux-x64": "0.6.0",
44
+ "compendium-mcp-linux-x64-musl": "0.6.0",
45
+ "compendium-mcp-linux-arm64": "0.6.0",
46
+ "compendium-mcp-win32-x64": "0.6.0",
47
+ "compendium-mcp-win32-arm64": "0.6.0"
48
48
  },
49
49
  "preferUnplugged": true
50
50
  }