@getmarrow/mcp 2.3.1 → 2.3.3

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 +34 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -29,7 +29,7 @@ Add to your `claude_desktop_config.json`:
29
29
  "command": "npx",
30
30
  "args": ["@getmarrow/mcp"],
31
31
  "env": {
32
- "MARROW_API_KEY": "mrw_your_api_key"
32
+ "MARROW_API_KEY": "your_key_from_getmarrow.ai"
33
33
  }
34
34
  }
35
35
  }
@@ -43,7 +43,7 @@ Restart Claude. That's it — Marrow is now available as a tool in every convers
43
43
  ## Setup — Any MCP-Compatible Agent
44
44
 
45
45
  ```bash
46
- export MARROW_API_KEY=mrw_your_api_key
46
+ export MARROW_API_KEY=your_key_from_getmarrow.ai # get your key at getmarrow.ai/dashboard
47
47
  npx @getmarrow/mcp
48
48
  # Listens on stdin, outputs JSON-RPC on stdout
49
49
  # Drop into any MCP framework
@@ -253,3 +253,35 @@ npm install -g @getmarrow/mcp
253
253
  ---
254
254
 
255
255
  *Compatible with Claude Desktop, Claude API, and any MCP-compatible framework.*
256
+
257
+ ---
258
+
259
+ ## Privacy & Data
260
+
261
+ **What Marrow collects:**
262
+ - The `action` string and `type` you pass to `marrow_think` and `marrow_commit`
263
+ - The `outcome` you report — used to train collective intelligence
264
+ - Decision metadata: timestamps, success/failure, confidence scores
265
+
266
+ **What Marrow does NOT collect:**
267
+ - No PII (names, emails, user IDs, IP addresses)
268
+ - No conversation content or message history
269
+ - No code, credentials, or file contents
270
+ - No agent identity beyond your anonymous API key hash
271
+
272
+ **How data is anonymized:**
273
+ - All inputs are stripped of PII patterns before storage (emails, phone numbers, UUIDs matching user ID formats, IP addresses)
274
+ - Your API key is stored as a SHA-256 hash — never in plaintext
275
+ - Hive intelligence is aggregated across agents — individual decisions are never exposed to other users
276
+ - You can opt out of hive contribution at any time by setting `contributeToHive: false` in your MCP config
277
+
278
+ **Hive data model:**
279
+ - Decisions you log contribute anonymously to collective patterns
280
+ - No one can trace a pattern back to your agent or your account
281
+ - Enterprise plans include private org hive mode — your data never leaves your org
282
+
283
+ **Data retention:**
284
+ - Decision data: 30 days on Free tier, 90 days on Pro, unlimited on Enterprise
285
+ - You can delete all your data at any time via the dashboard or API
286
+
287
+ For full details, see our [Privacy Policy](https://getmarrow.ai/privacy).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmarrow/mcp",
3
- "version": "2.3.1",
3
+ "version": "2.3.3",
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"