compendium-mcp 0.6.0 → 0.6.1

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 +6 -6
  2. package/package.json +13 -9
package/README.md CHANGED
@@ -90,10 +90,10 @@ Binary packaging details for maintainers: [npm/DISTRIBUTION.md](npm/DISTRIBUTION
90
90
 
91
91
  | Mode | Command | Notes |
92
92
  |------|---------|-------|
93
- | **stdio** (default) | `compendium` / `compendium stdio` | Cursor / Claude Desktop |
94
- | **Streamable HTTP/SSE** | `compendium http [BIND]` | Requires `--features http`. Endpoint: `http://{bind}/mcp` |
93
+ | **stdio** (default) | `compendium` / `compendium stdio` | Cursor / Claude Desktop — dual-compat (legacy initialize or modern connect) |
94
+ | **Streamable HTTP** | `compendium http [BIND]` | Requires `--features http`. Endpoint: `http://{bind}/mcp`. Sessionless (`2026-07-28`); JSON preferred, SSE fallback |
95
95
 
96
- Default HTTP bind: `127.0.0.1:8788` (override with arg or `COMPENDIUM_HTTP_BIND`).
96
+ Default HTTP bind: `127.0.0.1:8788` (override with arg or `COMPENDIUM_HTTP_BIND`). App cache (`COMPENDIUM_CACHE_DIR`) is not an MCP session — set it for multi-request HTTP. See playbook `http-transport`.
97
97
 
98
98
  ## Tools
99
99
 
@@ -169,7 +169,7 @@ src/
169
169
  brand.rs # SEP-973 icons for serverInfo + tool
170
170
  config.rs # COMPENDIUM_* env config
171
171
  server/ # MCP tool + resources + action handlers (rmcp)
172
- http.rs # Streamable HTTP/SSE (feature = "http")
172
+ http.rs # Streamable HTTP, sessionless (feature = "http")
173
173
  pipeline/
174
174
  brief/ # workspace brief (walk / window / pack / synthesize)
175
175
  tokens.rs # heuristic or tiktoken BPE (feature = "real-tokens")
@@ -192,7 +192,7 @@ tests/
192
192
  e2e_smoke.rs # spawns binary, MCP handshake, tools + resources
193
193
  eval_regression.rs # B1 heuristic quality + latency smoke
194
194
  CHANGELOG.md
195
- REPORT.md # design essay + Shipped/Next/Deferred roadmap
195
+ REPORT.md # design essay + Shipped (A–C) / Next ops / Deferred roadmap
196
196
  ```
197
197
 
198
198
  ## Build
@@ -392,7 +392,7 @@ cargo test --test e2e_smoke
392
392
  cargo run --features http -- http 127.0.0.1:8788
393
393
  ```
394
394
 
395
- `e2e_smoke` spawns `CARGO_BIN_EXE_compendium`, completes the MCP initialize handshake over stdio, lists tools, then calls gateway actions. `http_smoke` (requires `--features http`) exercises streamable HTTP in-process.
395
+ `e2e_smoke` spawns `CARGO_BIN_EXE_compendium`, completes MCP connect (legacy initialize) over stdio, lists tools, then calls gateway actions. `http_smoke` (requires `--features http`) exercises sessionless streamable HTTP in-process.
396
396
 
397
397
  ## Design notes
398
398
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compendium-mcp",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "MCP server that compresses, summarizes, and filters context to minimize LLM token usage",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -34,17 +34,21 @@
34
34
  "LICENSE"
35
35
  ],
36
36
  "scripts": {
37
- "prepack": "node npm/scripts/check-wrapper.js",
37
+ "check-npm-gates": "node npm/scripts/check-versions-selftest.js && node npm/scripts/check-versions.js && node npm/scripts/check-residual-npm.js",
38
+ "check-versions": "node npm/scripts/check-versions.js",
39
+ "check-versions-selftest": "node npm/scripts/check-versions-selftest.js",
40
+ "check-residual-npm": "node npm/scripts/check-residual-npm.js",
41
+ "prepack": "node npm/scripts/check-wrapper.js && node npm/scripts/check-versions.js",
38
42
  "prepare": "node npm/scripts/link-bins.js"
39
43
  },
40
44
  "optionalDependencies": {
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"
45
+ "compendium-mcp-darwin-arm64": "0.6.1",
46
+ "compendium-mcp-darwin-x64": "0.6.1",
47
+ "compendium-mcp-linux-x64": "0.6.1",
48
+ "compendium-mcp-linux-x64-musl": "0.6.1",
49
+ "compendium-mcp-linux-arm64": "0.6.1",
50
+ "compendium-mcp-win32-x64": "0.6.1",
51
+ "compendium-mcp-win32-arm64": "0.6.1"
48
52
  },
49
53
  "preferUnplugged": true
50
54
  }