@getmarrow/mcp 2.9.4 → 3.0.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.
- package/README.md +56 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,7 +17,62 @@ With `@getmarrow/mcp`, any MCP-compatible client can log intent before acting, i
|
|
|
17
17
|
|
|
18
18
|
---
|
|
19
19
|
|
|
20
|
-
## What's New in
|
|
20
|
+
## What's New in v3.0.0
|
|
21
|
+
|
|
22
|
+
**Active Intelligence — Marrow Now Intervenes Before Mistakes**
|
|
23
|
+
|
|
24
|
+
### Auto-Warn on Orient
|
|
25
|
+
The `marrow_orient` tool now accepts `autoWarn: true` and warns you BEFORE you start a task that recently failed:
|
|
26
|
+
|
|
27
|
+
```json
|
|
28
|
+
{
|
|
29
|
+
"name": "marrow_orient",
|
|
30
|
+
"arguments": {
|
|
31
|
+
"autoWarn": true,
|
|
32
|
+
"task": "Fix Neutron API authentication"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
**Response includes warnings:**
|
|
38
|
+
```
|
|
39
|
+
⚠️ HIGH: This task type failed 4x with method='internal'.
|
|
40
|
+
Try method='neutronpay' (89% success rate)
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### Loop Detection on Think
|
|
44
|
+
The `marrow_think` tool now accepts `checkLoop: true` and detects if you're about to retry a failed approach:
|
|
45
|
+
|
|
46
|
+
```json
|
|
47
|
+
{
|
|
48
|
+
"name": "marrow_think",
|
|
49
|
+
"arguments": {
|
|
50
|
+
"action": "Retry auth with method='internal'",
|
|
51
|
+
"checkLoop": true
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
**Response includes loop warnings:**
|
|
57
|
+
```
|
|
58
|
+
🚨 LOOP DETECTED: You're retrying a failed approach.
|
|
59
|
+
Previous failure: 'internal' method not supported.
|
|
60
|
+
Suggested: Use method='neutronpay' instead.
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### Rate Limiting
|
|
64
|
+
- `marrow_orient`: 30 requests/minute per account
|
|
65
|
+
- `marrow_think`: 60 requests/minute per account
|
|
66
|
+
- Automatic 429 responses when limit exceeded
|
|
67
|
+
|
|
68
|
+
### Enhanced PII Protection
|
|
69
|
+
- Automatic stripping of emails, phone numbers, API keys from all responses
|
|
70
|
+
- Applied to `recentLessons`, `warnings`, and `outcome` fields
|
|
71
|
+
- Deep object stripping for complex data structures
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
## What's New in v2.9.4
|
|
21
76
|
|
|
22
77
|
**Backend API Enhancements** — New MCP tools for memory lifecycle management:
|
|
23
78
|
|