@getmarrow/mcp 3.9.16 → 3.9.17

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 +19 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -63,9 +63,26 @@ Accounts with <7 days of activity AND <20 decisions get an onboarding payload sh
63
63
 
64
64
  ---
65
65
 
66
- ## What's New in v3.9.16
66
+ ## What's New in v3.9.17
67
67
 
68
- v3.9.16 adds `marrow_value_report` so MCP agents can pull owner-ready proof of Marrow value without a dashboard. The existing passive hooks remain the default install path: `PostToolUse` logs meaningful tool outcomes and `UserPromptSubmit` injects relevant context plus decision briefs for risky prompts.
68
+ v3.9.17 adds Phase 1 passive install support with the new universal installer:
69
+
70
+ ```bash
71
+ npx @getmarrow/install --mcp --dry-run
72
+ npx @getmarrow/install --mcp --yes
73
+ ```
74
+
75
+ The installer detects Claude Code, Cursor, Codex/agent instruction files, OpenClaw-style workspaces, MCP config, Node, and Python projects. It can write MCP hook config, markdown instructions, SDK passive preload files, and run a harmless Marrow self-test when `MARROW_API_KEY` is present.
76
+
77
+ `marrow_agent_status` now pairs with the enhanced `/v1/agent/status` health contract so agents can prove Marrow is active without a human dashboard.
78
+
79
+ Full feature history, examples, and API reference live at [getmarrow.ai/docs](https://getmarrow.ai/docs/).
80
+
81
+ ---
82
+
83
+ ## Agent Value Report
84
+
85
+ `marrow_value_report` lets MCP agents pull owner-ready proof of Marrow value without a dashboard. The existing passive hooks remain the default install path: `PostToolUse` logs meaningful tool outcomes and `UserPromptSubmit` injects relevant context plus decision briefs for risky prompts.
69
86
 
70
87
  ### Value Report Tool
71
88
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmarrow/mcp",
3
- "version": "3.9.16",
3
+ "version": "3.9.17",
4
4
  "description": "Your go-to memory provider for all agents, for any AI model.",
5
5
  "bin": {
6
6
  "marrow-mcp": "dist/cli.js"
@@ -46,7 +46,7 @@
46
46
  "README.md"
47
47
  ],
48
48
  "dependencies": {
49
- "@getmarrow/sdk": "^3.7.10"
49
+ "@getmarrow/sdk": "^3.7.15"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/node": "^25.5.2",