@getmarrow/mcp 3.2.1 → 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.
Files changed (3) hide show
  1. package/README.md +20 -0
  2. package/dist/cli.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -46,6 +46,26 @@ Your agent should check for and use these fields — they represent collective i
46
46
 
47
47
  ---
48
48
 
49
+ ## Available Templates
50
+
51
+ 24 pre-built workflow templates across 8 industries. Browse via `marrow_list_templates` and install with `marrow_install_template`.
52
+
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`
61
+
62
+ Full catalog with descriptions: [getmarrow.ai/docs#template-marketplace](https://getmarrow.ai/docs/#template-marketplace)
63
+
64
+ ```
65
+ marrow_list_templates({ industry: 'insurance' })
66
+ marrow_install_template({ slug: 'claims-triage' })
67
+ ```
68
+
49
69
  ## Claude Code Compatibility
50
70
 
51
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.1' },
759
+ serverInfo: { name: 'marrow', version: '3.2.2' },
760
760
  });
761
761
  // Auto-enroll: emit enrollment notification on connection
762
762
  if (AUTO_ENROLL) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmarrow/mcp",
3
- "version": "3.2.1",
3
+ "version": "3.2.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"