@getmarrow/mcp 3.8.0 → 3.8.2

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 +38 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -17,6 +17,22 @@ With `@getmarrow/mcp`, any MCP-compatible client can log intent before acting, i
17
17
 
18
18
  ---
19
19
 
20
+ ## Auto-Logging
21
+
22
+ Marrow auto-logs at three layers — transparent to your agent, invisible to you:
23
+
24
+ | Layer | How | Agent effort |
25
+ |-------|-----|-------------|
26
+ | Server-side | Every authenticated API call auto-logged as a decision | Zero |
27
+ | SDK | `marrow.think()` / `marrow.commit()` — explicit control | Minimal |
28
+ | MCP hooks | `npx @getmarrow/mcp setup` — PostToolUse + UserPromptSubmit hooks | Zero |
29
+
30
+ **Passive mode in action:** Run `npx @getmarrow/mcp setup` once. Every tool call your agent makes (Bash, file edits, MCP calls) is auto-logged in the background. Marrow intelligence is auto-injected into your agent's context. Fail-silent, 2-second timeout, never blocks your prompt.
31
+
32
+ Disable: `MARROW_AUTO_HOOK=false`. Debug: `MARROW_HOOK_DEBUG=true`.
33
+
34
+ ---
35
+
20
36
  ## Improvement Since Onboarding
21
37
 
22
38
  `marrow_dashboard` and `marrow_digest` now return an `improvement` block comparing your agents' current performance against their day-1 baseline — a frozen snapshot of the first week of activity. Baseline captures automatically once an account reaches 7 days OR 20 decisions (whichever first).
@@ -47,9 +63,29 @@ Accounts with <7 days of activity AND <20 decisions get an onboarding payload sh
47
63
 
48
64
  ---
49
65
 
50
- ## What's New in v3.7.0
66
+ ## What's New in v3.8.0
67
+
68
+ ### Multi-API-Key Management Tools
69
+
70
+ Five new MCP tools for managing API keys across your agent fleet — no dashboard required:
71
+
72
+ - `marrow_create_key` — Create named, scoped API keys (`live`/`test` type, optional scopes and agent bindings)
73
+ - `marrow_list_keys` — List all API keys with masked display and tier limits
74
+ - `marrow_get_key` — Get key details, usage stats, and expiry info
75
+ - `marrow_revoke_key` — Permanently revoke a key
76
+ - `marrow_rotate_key` — Atomically rotate (revoke old + create new, returns new key once)
77
+
78
+ Create/rotate return the full key exactly once with a warning. All other tools return masked keys only.
79
+
80
+ ```bash
81
+ npx @getmarrow/mcp --key mrw_...
82
+ # Now available: marrow_create_key, marrow_list_keys, marrow_get_key,
83
+ # marrow_revoke_key, marrow_rotate_key
84
+ ```
85
+
86
+ ---
51
87
 
52
- ### Passive Context Injection (UserPromptSubmit hook)
88
+ ### Previous: v3.7.0 — Passive Context Injection
53
89
 
54
90
  Marrow's passive loop is now complete. v3.2.0 shipped the **write side** — every tool call your agent makes is auto-logged via a PostToolUse hook. v3.7.0 ships the **read side** — Marrow's intelligence is auto-injected into your agent's prompt window via a UserPromptSubmit hook. No agent discipline required for either side.
55
91
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmarrow/mcp",
3
- "version": "3.8.0",
3
+ "version": "3.8.2",
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"
@@ -43,4 +43,4 @@
43
43
  "@types/node": "^25.5.2",
44
44
  "typescript": "^5.3.3"
45
45
  }
46
- }
46
+ }