@getmarrow/mcp 3.9.0 → 3.9.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.
- package/README.md +32 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -53,7 +53,18 @@ Add to your Claude Desktop or MCP client config:
|
|
|
53
53
|
| `marrow_digest` | Weekly summary with trends |
|
|
54
54
|
| `marrow_session_end` | Close session with summary |
|
|
55
55
|
|
|
56
|
-
### 🆕 v3.
|
|
56
|
+
### 🆕 v3.9.1 — Standalone CLI + Multi-API-Key Management
|
|
57
|
+
|
|
58
|
+
**Standalone CLI commands:**
|
|
59
|
+
```bash
|
|
60
|
+
npx @getmarrow/mcp keys create --name "Prod" --type live
|
|
61
|
+
npx @getmarrow/mcp keys list
|
|
62
|
+
npx @getmarrow/mcp keys rotate --id key_abc123
|
|
63
|
+
npx @getmarrow/mcp keys revoke --id key_abc123
|
|
64
|
+
npx @getmarrow/mcp keys audit --limit 20
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
**MCP tools (for Claude/Cursor agents):**
|
|
57
68
|
|
|
58
69
|
| Tool | Description |
|
|
59
70
|
|------|-------------|
|
|
@@ -85,6 +96,26 @@ Marrow auto-logs at three layers:
|
|
|
85
96
|
|
|
86
97
|
Passive mode: run setup once, auto-logging runs silently forever.
|
|
87
98
|
|
|
99
|
+
## Full Feature Marketplace
|
|
100
|
+
|
|
101
|
+
| Category | Features |
|
|
102
|
+
|----------|----------|
|
|
103
|
+
| 🔁 **Decision Loop** | orient → think → commit with auto-logging |
|
|
104
|
+
| 🔐 **Multi-API-Keys** | Create, list, rotate, revoke scoped keys for fleets |
|
|
105
|
+
| 🧠 **Persistent Memory** | List, search, update, share, export, import (14 tools) |
|
|
106
|
+
| 📊 **Operator Dashboard** | Health, top failures, workflow status, velocity metrics |
|
|
107
|
+
| 📈 **Velocity Tracking** | Attempts/success, time-to-success, drift rate, improvement delta |
|
|
108
|
+
| 🌐 **Collective Intelligence** | Cross-account anonymous patterns, plain-English query |
|
|
109
|
+
| 🔄 **Enforced Workflows** | 24 templates across 8 industries, step-by-step with audit |
|
|
110
|
+
| ⚡ **Passive Mode** | npx @getmarrow/mcp setup — zero code auto-logging + hooks |
|
|
111
|
+
| 🛡️ **PII Protection** | Auto-strip emails, phones, keys from all responses |
|
|
112
|
+
| 🗄️ **Fleet Operations** | Agent registry, multi-user orgs, RBAC, SSE streaming |
|
|
113
|
+
| 📋 **Session Management** | Open/close with summaries, pattern reuse tracking |
|
|
114
|
+
| 🔗 **Causal Graphs** | Decision chaining — "What happened after this deploy?" |
|
|
115
|
+
| 📬 **Auto-Email** | First-decision welcome, 7-day recap, milestone notifications |
|
|
116
|
+
| 🔒 **Rate Limiting** | Per-endpoint, per-key, per-IP with tiered limits |
|
|
117
|
+
| 📜 **Audit Trail** | Immutable key operation logs with IP and timestamp |
|
|
118
|
+
|
|
88
119
|
## Full Documentation
|
|
89
120
|
|
|
90
121
|
📖 **Complete API reference, metrics, features, and examples:**
|