conduyt-mcp 4.36.0 → 4.37.0
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/dist/tools/messaging.js +21 -0
- package/package.json +1 -1
- package/scripts/coverage-matrix.json +10 -4
package/dist/tools/messaging.js
CHANGED
|
@@ -86,4 +86,25 @@ export function registerMessagingTools(server, client) {
|
|
|
86
86
|
const result = await client.get(`/api/v1/reports/sms-delivery?${params}`);
|
|
87
87
|
return formatResult(result);
|
|
88
88
|
});
|
|
89
|
+
server.tool("conduyt_sms_drip_conversion_report", "Conversion by drip STEP for external-workflow SMS drips: for each text in each SMS-drip automation, how many contacts were texted and how many of them replied, booked an appointment, moved their deal forward (to a non-Lost stage) or won, credited last-touch inside the attribution window (the next text, from any drip, closes the window early). Per-step and per-automation rates. Spans clamp to 90 days. Response `notes` states the one approximation: texts from a since-deleted drip still close windows but are credited to no step.", {
|
|
90
|
+
from: z.string().optional().describe("ISO start (omit both for the last 90 days; spans clamp to 90d)"),
|
|
91
|
+
to: z.string().optional().describe("ISO end"),
|
|
92
|
+
automationId: z.string().uuid().optional().describe("Scope to one automation"),
|
|
93
|
+
smartListId: z.string().uuid().optional().describe("Scope to contacts in this smart list"),
|
|
94
|
+
attributionDays: z.number().int().min(1).max(14).optional().describe("Credit an outcome only within this many days of the text (default 3, max 14)"),
|
|
95
|
+
}, async ({ from, to, automationId, smartListId, attributionDays }) => {
|
|
96
|
+
const params = new URLSearchParams();
|
|
97
|
+
if (from)
|
|
98
|
+
params.set("from", from);
|
|
99
|
+
if (to)
|
|
100
|
+
params.set("to", to);
|
|
101
|
+
if (automationId)
|
|
102
|
+
params.set("automationId", automationId);
|
|
103
|
+
if (smartListId)
|
|
104
|
+
params.set("smartListId", smartListId);
|
|
105
|
+
if (attributionDays !== undefined)
|
|
106
|
+
params.set("attributionDays", String(attributionDays));
|
|
107
|
+
const result = await client.get(`/api/v1/reports/sms-drip-conversion?${params}`);
|
|
108
|
+
return formatResult(result);
|
|
109
|
+
});
|
|
89
110
|
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-09-
|
|
3
|
-
"toolCount":
|
|
4
|
-
"totalEndpoints":
|
|
2
|
+
"generatedAt": "2026-09-10T22:17:25.014Z",
|
|
3
|
+
"toolCount": 232,
|
|
4
|
+
"totalEndpoints": 940,
|
|
5
5
|
"counts": {
|
|
6
|
-
"covered":
|
|
6
|
+
"covered": 214,
|
|
7
7
|
"excluded": 283,
|
|
8
8
|
"planned": 443,
|
|
9
9
|
"uncategorized": 0
|
|
@@ -3269,6 +3269,12 @@
|
|
|
3269
3269
|
"conduyt_sms_delivery_report"
|
|
3270
3270
|
]
|
|
3271
3271
|
},
|
|
3272
|
+
"GET /api/v1/reports/sms-drip-conversion": {
|
|
3273
|
+
"status": "covered",
|
|
3274
|
+
"tools": [
|
|
3275
|
+
"conduyt_sms_drip_conversion_report"
|
|
3276
|
+
]
|
|
3277
|
+
},
|
|
3272
3278
|
"GET /api/v1/reports/sms-templates": {
|
|
3273
3279
|
"status": "planned",
|
|
3274
3280
|
"reason": "additional report surfaces beyond ai/insights"
|