@getmarrow/mcp 3.0.0 → 3.0.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.
Files changed (2) hide show
  1. package/README.md +52 -45
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -17,51 +17,58 @@ With `@getmarrow/mcp`, any MCP-compatible client can log intent before acting, i
17
17
 
18
18
  ---
19
19
 
20
- ## What's New in v2.9.2
21
-
22
- **Backend API Enhancements** New MCP tools for memory lifecycle management:
23
-
24
- ### Cross-Agent Memory Sharing
25
- Share memories across agents in your account:
26
- - `marrow_share_memory` — Share a memory with specific agents
27
- - Memories shared with your agents automatically appear in `marrow_list_memories`
28
-
29
- ### Memory Export/Import
30
- Backup and restore memories:
31
- - `marrow_export_memories` — Export to JSON or CSV format
32
- - `marrow_import_memories` Import with merge (dedup) or replace mode
33
-
34
- ### Advanced FTS Filters
35
- Precision search in `marrow_retrieve_memories`:
36
- - `from` / `to` — Date range filters
37
- - `tags` — Filter by tags (AND logic)
38
- - `source` — Filter by source (e.g., `session_bootstrap`, `think`)
39
- - `status` Filter by status (`active`, `outdated`, `deleted`)
40
-
41
- ### New MCP Tools
42
- - `marrow_list_memories` — List memories with pagination
43
- - `marrow_get_memory` Get single memory by ID
44
- - `marrow_update_memory` Update memory text, tags, or metadata
45
- - `marrow_mark_outdated` — Mark memory as outdated
46
- - `marrow_supersede_memory` — Atomically replace memory with new version
47
- - `marrow_delete_memory` — Soft delete memory
48
- - `marrow_export_memories` — Export to JSON or CSV
49
- - `marrow_import_memories` — Import memories
50
- - `marrow_share_memory` Share with agents
51
- - `marrow_retrieve_memories` — FTS search with filters
52
-
53
- ### Security Hardening
54
- - Account isolation enforced (no cross-account leakage)
55
- - Agent ID validation on all tools
56
- - Audit logging for export/import operations
57
- - Rate limiting on export (5/hour)
58
- - SHA-256 dedup on import
59
-
60
- ### Privacy & PII Protection
61
- - **Automatic PII stripping** — Sensitive data (emails, phone numbers, API keys, tokens) is detected and stripped before storage
62
- - **Export verification** — Export your data anytime to verify what's stored and confirm PII is stripped
63
- - **Data ownership** — You own all your data; export and delete anytime
64
- - **All features free** No paywalls on security or privacy features
20
+ ## What's New in v3.0.0
21
+
22
+ **Active IntelligenceMarrow 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
65
72
 
66
73
  ---
67
74
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmarrow/mcp",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
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"