@getmarrow/mcp 3.9.3 → 3.9.5
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.
- package/README.md +12 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -63,11 +63,20 @@ 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.
|
|
66
|
+
## What's New in v3.9.4
|
|
67
67
|
|
|
68
|
-
### Multi-API-Key Management
|
|
68
|
+
### Standalone CLI + Multi-API-Key Management
|
|
69
69
|
|
|
70
|
-
|
|
70
|
+
**Standalone CLI commands (new in v3.9.0):**
|
|
71
|
+
```bash
|
|
72
|
+
npx @getmarrow/mcp keys create --name "Prod" --type live
|
|
73
|
+
npx @getmarrow/mcp keys list
|
|
74
|
+
npx @getmarrow/mcp keys rotate --id key_abc123
|
|
75
|
+
npx @getmarrow/mcp keys revoke --id key_abc123
|
|
76
|
+
npx @getmarrow/mcp keys audit --limit 20
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
**MCP tools (for Claude/Cursor agents):**
|
|
71
80
|
|
|
72
81
|
- `marrow_create_key` — Create named, scoped API keys (`live`/`test` type, optional scopes and agent bindings)
|
|
73
82
|
- `marrow_list_keys` — List all API keys with masked display and tier limits
|