@getmarrow/mcp 3.0.11 → 3.0.12

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 (3) hide show
  1. package/README.md +49 -0
  2. package/dist/cli.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -42,6 +42,55 @@ This release includes 13 security patches:
42
42
  - **Error handling** — all silent catch blocks replaced with proper error logging
43
43
  - **HTTP status checking** — API errors now return clear messages instead of cryptic JSON parse failures
44
44
 
45
+ ### Auto-Warn on Orient
46
+ The `marrow_orient` tool now accepts `autoWarn: true` and warns you BEFORE you start a task that recently failed:
47
+
48
+ ```json
49
+ {
50
+ "name": "marrow_orient",
51
+ "arguments": {
52
+ "autoWarn": true,
53
+ "task": "Fix authentication error"
54
+ }
55
+ }
56
+ ```
57
+
58
+ **Response includes warnings:**
59
+ ```
60
+ ⚠️ HIGH: This task type failed 4x with approach='retry-without-fix'.
61
+ Try approach='apply-patch-first' (89% success rate)
62
+ ```
63
+
64
+ ### Loop Detection on Think
65
+ The `marrow_think` tool now accepts `checkLoop: true` and detects if you're about to retry a failed approach:
66
+
67
+ ```json
68
+ {
69
+ "name": "marrow_think",
70
+ "arguments": {
71
+ "action": "Retry auth with method='internal'",
72
+ "checkLoop": true
73
+ }
74
+ }
75
+ ```
76
+
77
+ **Response includes loop warnings:**
78
+ ```
79
+ 🚨 LOOP DETECTED: You're retrying a failed approach.
80
+ Previous failure: 'retry-without-fix' approach not supported.
81
+ Suggested: Use 'apply-patch-first' approach instead.
82
+ ```
83
+
84
+ ### Rate Limiting
85
+ - `marrow_orient`: 30 requests/minute per account
86
+ - `marrow_think`: 60 requests/minute per account
87
+ - Automatic 429 responses when limit exceeded
88
+
89
+ ### Enhanced PII Protection
90
+ - Automatic stripping of emails, phone numbers, API keys from all responses
91
+ - Applied to `recentLessons`, `warnings`, and `outcome` fields
92
+ - Deep object stripping for complex data structures
93
+
45
94
  ---
46
95
 
47
96
  ## The Problem
package/dist/cli.js CHANGED
@@ -671,7 +671,7 @@ async function handleRequest(req) {
671
671
  success(id, {
672
672
  protocolVersion: '2024-11-05',
673
673
  capabilities: { tools: {}, prompts: {} },
674
- serverInfo: { name: 'marrow', version: '3.0.11' },
674
+ serverInfo: { name: 'marrow', version: '3.0.12' },
675
675
  });
676
676
  // Auto-enroll: emit enrollment notification on connection
677
677
  if (AUTO_ENROLL) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmarrow/mcp",
3
- "version": "3.0.11",
3
+ "version": "3.0.12",
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"