conduyt-mcp 4.29.0 → 4.30.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.
|
@@ -22,7 +22,7 @@ export function registerAutomationTools(server, client) {
|
|
|
22
22
|
server.tool("conduyt_create_automation", "Create a new automation. Requires a name and trigger event. Use conduyt_resolve_names to convert human-readable names to UUIDs before building actions.", {
|
|
23
23
|
name: z.string().describe("Automation name"),
|
|
24
24
|
description: z.string().optional().describe("Description of what this automation does"),
|
|
25
|
-
triggerEvent: z.string().describe("Trigger event (e.g. 'contact.created', 'deal.stage_changed', 'tag.added', 'scheduled')"),
|
|
25
|
+
triggerEvent: z.string().describe("Trigger event (e.g. 'contact.created', 'deal.stage_changed', 'tag.added', 'scheduled', or 'message.understood' — fires when the copilot has read an inbound text/email and understood its intent; list them all with conduyt_list_automation_events)"),
|
|
26
26
|
kind: z.enum(["native", "n8n"]).optional().describe("Automation type — 'native' for the built-in graph engine (use `actions`), 'n8n' for an external n8n webhook (requires n8nWorkflowId + n8nWebhookUrl). For agent-built automations use 'native'."),
|
|
27
27
|
n8nWorkflowId: z.string().optional().describe("n8n workflow ID (required when kind='n8n')"),
|
|
28
28
|
n8nWebhookUrl: z.string().optional().describe("n8n webhook URL (required when kind='n8n')"),
|
|
@@ -33,7 +33,7 @@ export function registerAutomationTools(server, client) {
|
|
|
33
33
|
triggerConditions: z
|
|
34
34
|
.any()
|
|
35
35
|
.optional()
|
|
36
|
-
.describe("Conditions that must match for the trigger to fire. Scalar filters like tagId/pipelineId/bookingPageIds, plus per-event config: for 'contact.untouched' pass { untouchedDays: N } (integer 1-365) to fire once per quiet episode when a contact has had no outreach for N+ days — without it the trigger is the minutes-scale speed-to-lead alert. Unknown keys on native events are rejected at create/publish (422)."),
|
|
36
|
+
.describe("Conditions that must match for the trigger to fire. Scalar filters like tagId/pipelineId/bookingPageIds, plus per-event config: for 'message.understood' filter on the reading with { filters: [{ field: 'trigger.intent', operator: 'equals', value: 'document_sent' }] } (intents: interested, question, callback_requested, appointment_confirm, appointment_cancel, document_sent, objection, not_interested, opt_out, wrong_number, unclear; also trigger.channel sms|email and trigger.sentiment positive|neutral|negative; {{trigger.summary}} / {{trigger.ask}} are merge fields downstream); for 'contact.untouched' pass { untouchedDays: N } (integer 1-365) to fire once per quiet episode when a contact has had no outreach for N+ days — without it the trigger is the minutes-scale speed-to-lead alert. Unknown keys on native events are rejected at create/publish (422)."),
|
|
37
37
|
}, async (params) => {
|
|
38
38
|
const result = await client.post("/api/v1/automations", params);
|
|
39
39
|
return formatResult(result);
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-09-
|
|
2
|
+
"generatedAt": "2026-09-06T17:51:09.874Z",
|
|
3
3
|
"toolCount": 214,
|
|
4
|
-
"totalEndpoints":
|
|
4
|
+
"totalEndpoints": 919,
|
|
5
5
|
"counts": {
|
|
6
6
|
"covered": 198,
|
|
7
|
-
"excluded":
|
|
7
|
+
"excluded": 276,
|
|
8
8
|
"planned": 445,
|
|
9
9
|
"uncategorized": 0
|
|
10
10
|
},
|
|
@@ -2015,6 +2015,10 @@
|
|
|
2015
2015
|
"conduyt_ai_call_disposition"
|
|
2016
2016
|
]
|
|
2017
2017
|
},
|
|
2018
|
+
"POST /api/v1/dialer/call/:id/facetime-status": {
|
|
2019
|
+
"status": "excluded",
|
|
2020
|
+
"reason": "realtime browser dialer (WebRTC tokens, live call control) — needs a live audio session"
|
|
2021
|
+
},
|
|
2018
2022
|
"POST /api/v1/dialer/call/:id/hangup": {
|
|
2019
2023
|
"status": "excluded",
|
|
2020
2024
|
"reason": "realtime browser dialer (WebRTC tokens, live call control) — needs a live audio session"
|