conduyt-mcp 4.33.0 → 4.34.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/contacts.js
CHANGED
|
@@ -21,9 +21,11 @@ export function registerContactTools(server, client) {
|
|
|
21
21
|
tag: z.string().optional().describe("Filter by tag name"),
|
|
22
22
|
source: z.string().optional().describe("Filter by source (e.g. 'signup', 'import', 'manual')"),
|
|
23
23
|
assignedTo: z.string().optional().describe("Filter by assigned user ID"),
|
|
24
|
+
masterStatus: z.array(z.string().trim().min(1).max(40)).max(20).optional().describe("Only contacts whose LEAD (master) status is one of these: 'open', 'won', 'lost', 'abandoned', 'disqualified' or an account custom status. Unknown values are a 400."),
|
|
25
|
+
excludeMasterStatus: z.array(z.string().trim().min(1).max(40)).max(20).optional().describe("Hide contacts whose lead status is one of these — e.g. ['won','lost','abandoned','disqualified'] is the 'Active' view. Naming a status in both lists is a 400."),
|
|
24
26
|
page: z.number().optional().describe("Page number (default 1)"),
|
|
25
27
|
per_page: z.number().optional().describe("Results per page (default 25, max 100)"),
|
|
26
|
-
}, async ({ search, tag, source, assignedTo, page, per_page }) => {
|
|
28
|
+
}, async ({ search, tag, source, assignedTo, masterStatus, excludeMasterStatus, page, per_page }) => {
|
|
27
29
|
const params = new URLSearchParams();
|
|
28
30
|
if (search)
|
|
29
31
|
params.set("search", search);
|
|
@@ -33,6 +35,10 @@ export function registerContactTools(server, client) {
|
|
|
33
35
|
params.set("source", source);
|
|
34
36
|
if (assignedTo)
|
|
35
37
|
params.set("assigned_to", assignedTo);
|
|
38
|
+
if (masterStatus?.length)
|
|
39
|
+
params.set("master_status", masterStatus.join(","));
|
|
40
|
+
if (excludeMasterStatus?.length)
|
|
41
|
+
params.set("exclude_master_status", excludeMasterStatus.join(","));
|
|
36
42
|
if (page)
|
|
37
43
|
params.set("page", String(page));
|
|
38
44
|
if (per_page)
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-09-
|
|
2
|
+
"generatedAt": "2026-09-09T18:54:08.958Z",
|
|
3
3
|
"toolCount": 219,
|
|
4
|
-
"totalEndpoints":
|
|
4
|
+
"totalEndpoints": 930,
|
|
5
5
|
"counts": {
|
|
6
6
|
"covered": 202,
|
|
7
|
-
"excluded":
|
|
7
|
+
"excluded": 283,
|
|
8
8
|
"planned": 445,
|
|
9
9
|
"uncategorized": 0
|
|
10
10
|
},
|
|
@@ -1573,6 +1573,10 @@
|
|
|
1573
1573
|
"status": "excluded",
|
|
1574
1574
|
"reason": "CRON_SECRET-gated infrastructure jobs; never key-callable"
|
|
1575
1575
|
},
|
|
1576
|
+
"GET /api/v1/cron/process-auto-dispositions": {
|
|
1577
|
+
"status": "excluded",
|
|
1578
|
+
"reason": "CRON_SECRET-gated infrastructure jobs; never key-callable"
|
|
1579
|
+
},
|
|
1576
1580
|
"GET /api/v1/cron/process-automation-redispatch": {
|
|
1577
1581
|
"status": "excluded",
|
|
1578
1582
|
"reason": "CRON_SECRET-gated infrastructure jobs; never key-callable"
|