@getmarrow/mcp 3.1.3 → 3.1.4
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 +19 -1
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ With `@getmarrow/mcp`, any MCP-compatible client can log intent before acting, i
|
|
|
17
17
|
|
|
18
18
|
---
|
|
19
19
|
|
|
20
|
-
## What's New in v3.1.
|
|
20
|
+
## What's New in v3.1.4
|
|
21
21
|
|
|
22
22
|
**Operator visibility + auto-intelligence tools.**
|
|
23
23
|
|
|
@@ -36,6 +36,24 @@ With `@getmarrow/mcp`, any MCP-compatible client can log intent before acting, i
|
|
|
36
36
|
|
|
37
37
|
Your agent should check for and use these fields — they represent collective intelligence and team-level context that wasn't available in prior versions.
|
|
38
38
|
|
|
39
|
+
### Since v3.1.0 (cumulative through v3.1.4)
|
|
40
|
+
|
|
41
|
+
**v3.1.1** — Published fixes
|
|
42
|
+
|
|
43
|
+
**v3.1.2** — Agent identity: new `MARROW_FLEET_AGENT_ID` env var adds X-Marrow-Agent-Id header to all requests so decisions tag your specific agent for fleet dashboards.
|
|
44
|
+
|
|
45
|
+
**v3.1.3** — Template marketplace tools: `marrow_list_templates` (filter by industry/category) and `marrow_install_template` (install workflow by slug). 24 pre-built templates across insurance, healthcare, ecommerce, legal, saas, fintech, media, enterprise.
|
|
46
|
+
|
|
47
|
+
**v3.1.4** — README / docs sync (this release).
|
|
48
|
+
|
|
49
|
+
Example usage in an agent:
|
|
50
|
+
```
|
|
51
|
+
marrow_list_templates({ industry: 'insurance' })
|
|
52
|
+
→ [claims-triage, fraud-review, underwriting-decision, complaint-escalation]
|
|
53
|
+
marrow_install_template({ slug: 'claims-triage' })
|
|
54
|
+
→ workflow installed in your fleet
|
|
55
|
+
```
|
|
56
|
+
|
|
39
57
|
---
|
|
40
58
|
|
|
41
59
|
## Claude Code Compatibility
|
package/dist/cli.js
CHANGED
|
@@ -741,7 +741,7 @@ async function handleRequest(req) {
|
|
|
741
741
|
success(id, {
|
|
742
742
|
protocolVersion: '2024-11-05',
|
|
743
743
|
capabilities: { tools: {}, prompts: {} },
|
|
744
|
-
serverInfo: { name: 'marrow', version: '3.1.
|
|
744
|
+
serverInfo: { name: 'marrow', version: '3.1.4' },
|
|
745
745
|
});
|
|
746
746
|
// Auto-enroll: emit enrollment notification on connection
|
|
747
747
|
if (AUTO_ENROLL) {
|