@getmarrow/mcp 3.2.0 → 3.2.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.
- package/README.md +12 -10
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,26 +44,28 @@ For troubleshooting hook behavior, set `MARROW_HOOK_DEBUG=true` to re-enable one
|
|
|
44
44
|
|
|
45
45
|
Your agent should check for and use these fields — they represent collective intelligence and team-level context that wasn't available in prior versions.
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
---
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
## Available Templates
|
|
50
50
|
|
|
51
|
-
|
|
51
|
+
24 pre-built workflow templates across 8 industries. Browse via `marrow_list_templates` and install with `marrow_install_template`.
|
|
52
52
|
|
|
53
|
-
**
|
|
53
|
+
- **Insurance (4):** `claims-triage`, `fraud-review`, `underwriting-decision`, `complaint-escalation`
|
|
54
|
+
- **Healthcare (4):** `patient-triage`, `clinical-documentation`, `prior-authorization`, `coding-audit`
|
|
55
|
+
- **E-commerce (3):** `order-fulfillment`, `refund-approval`, `return-processing`
|
|
56
|
+
- **Legal (3):** `contract-review`, `case-triage`, `document-discovery`
|
|
57
|
+
- **SaaS (6):** `code-review-deploy`, `incident-response`, `feature-rollout`, `ticket-triage`, `escalation-flow`, `lead-qualify`
|
|
58
|
+
- **Fintech (2):** `etl-pipeline`, `approval-flow`
|
|
59
|
+
- **Media (1):** `content-publish`
|
|
60
|
+
- **Enterprise (1):** `change-management`
|
|
54
61
|
|
|
55
|
-
|
|
62
|
+
Full catalog with descriptions: [getmarrow.ai/docs#template-marketplace](https://getmarrow.ai/docs/#template-marketplace)
|
|
56
63
|
|
|
57
|
-
Example usage in an agent:
|
|
58
64
|
```
|
|
59
65
|
marrow_list_templates({ industry: 'insurance' })
|
|
60
|
-
→ [claims-triage, fraud-review, underwriting-decision, complaint-escalation]
|
|
61
66
|
marrow_install_template({ slug: 'claims-triage' })
|
|
62
|
-
→ workflow installed in your fleet
|
|
63
67
|
```
|
|
64
68
|
|
|
65
|
-
---
|
|
66
|
-
|
|
67
69
|
## Claude Code Compatibility
|
|
68
70
|
|
|
69
71
|
Marrow MCP works natively with Claude Code. The server runs as a long-running process and handles the full MCP protocol correctly.
|
package/dist/cli.js
CHANGED
|
@@ -756,7 +756,7 @@ else {
|
|
|
756
756
|
success(id, {
|
|
757
757
|
protocolVersion: '2024-11-05',
|
|
758
758
|
capabilities: { tools: {}, prompts: {} },
|
|
759
|
-
serverInfo: { name: 'marrow', version: '3.2.
|
|
759
|
+
serverInfo: { name: 'marrow', version: '3.2.2' },
|
|
760
760
|
});
|
|
761
761
|
// Auto-enroll: emit enrollment notification on connection
|
|
762
762
|
if (AUTO_ENROLL) {
|