@getmarrow/mcp 3.0.10 → 3.0.11

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 +0 -55
  2. package/dist/cli.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -44,61 +44,6 @@ This release includes 13 security patches:
44
44
 
45
45
  ---
46
46
 
47
- ## What's New in v3.0.0
48
-
49
- **Active Intelligence — Marrow Now Intervenes Before Mistakes**
50
-
51
- ### Auto-Warn on Orient
52
- The `marrow_orient` tool now accepts `autoWarn: true` and warns you BEFORE you start a task that recently failed:
53
-
54
- ```json
55
- {
56
- "name": "marrow_orient",
57
- "arguments": {
58
- "autoWarn": true,
59
- "task": "Fix authentication error"
60
- }
61
- }
62
- ```
63
-
64
- **Response includes warnings:**
65
- ```
66
- ⚠️ HIGH: This task type failed 4x with approach='retry-without-fix'.
67
- Try approach='apply-patch-first' (89% success rate)
68
- ```
69
-
70
- ### Loop Detection on Think
71
- The `marrow_think` tool now accepts `checkLoop: true` and detects if you're about to retry a failed approach:
72
-
73
- ```json
74
- {
75
- "name": "marrow_think",
76
- "arguments": {
77
- "action": "Retry auth with method='internal'",
78
- "checkLoop": true
79
- }
80
- }
81
- ```
82
-
83
- **Response includes loop warnings:**
84
- ```
85
- 🚨 LOOP DETECTED: You're retrying a failed approach.
86
- Previous failure: 'retry-without-fix' approach not supported.
87
- Suggested: Use 'apply-patch-first' approach instead.
88
- ```
89
-
90
- ### Rate Limiting
91
- - `marrow_orient`: 30 requests/minute per account
92
- - `marrow_think`: 60 requests/minute per account
93
- - Automatic 429 responses when limit exceeded
94
-
95
- ### Enhanced PII Protection
96
- - Automatic stripping of emails, phone numbers, API keys from all responses
97
- - Applied to `recentLessons`, `warnings`, and `outcome` fields
98
- - Deep object stripping for complex data structures
99
-
100
- ---
101
-
102
47
  ## The Problem
103
48
 
104
49
  Most agents still operate with shallow memory.
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.10' },
674
+ serverInfo: { name: 'marrow', version: '3.0.11' },
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.10",
3
+ "version": "3.0.11",
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"