@getmarrow/mcp 2.3.2 → 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.
- package/README.md +32 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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).
|