@getmarrow/mcp 3.8.0 → 3.8.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 +22 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -47,9 +47,29 @@ Accounts with <7 days of activity AND <20 decisions get an onboarding payload sh
47
47
 
48
48
  ---
49
49
 
50
- ## What's New in v3.7.0
50
+ ## What's New in v3.8.0
51
51
 
52
- ### Passive Context Injection (UserPromptSubmit hook)
52
+ ### Multi-API-Key Management Tools
53
+
54
+ Five new MCP tools for managing API keys across your agent fleet — no dashboard required:
55
+
56
+ - `marrow_create_key` — Create named, scoped API keys (`live`/`test` type, optional scopes and agent bindings)
57
+ - `marrow_list_keys` — List all API keys with masked display and tier limits
58
+ - `marrow_get_key` — Get key details, usage stats, and expiry info
59
+ - `marrow_revoke_key` — Permanently revoke a key
60
+ - `marrow_rotate_key` — Atomically rotate (revoke old + create new, returns new key once)
61
+
62
+ Create/rotate return the full key exactly once with a warning. All other tools return masked keys only.
63
+
64
+ ```bash
65
+ npx @getmarrow/mcp --key mrw_...
66
+ # Now available: marrow_create_key, marrow_list_keys, marrow_get_key,
67
+ # marrow_revoke_key, marrow_rotate_key
68
+ ```
69
+
70
+ ---
71
+
72
+ ### Previous: v3.7.0 — Passive Context Injection
53
73
 
54
74
  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
75
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmarrow/mcp",
3
- "version": "3.8.0",
3
+ "version": "3.8.1",
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
+ }