conduyt-mcp 4.24.0 → 4.25.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.
@@ -5,6 +5,8 @@ export function registerMessagingTools(server, client) {
5
5
  contactId: z.string().describe("Contact UUID — must have a phone number on file"),
6
6
  body: z.string().describe("SMS message body (max 1600 characters)"),
7
7
  fromNumber: z.string().optional().describe("Sender phone number (defaults to account's primary number)"),
8
+ transport: z.enum(["twilio", "project_blue"]).optional().describe("'project_blue' sends from the acting user's own Project Blue iPhone line (iMessage when the lead is on Apple, SMS otherwise; the user must have a line assigned in Settings → Project Blue). Default: Twilio."),
9
+ idempotencyKey: z.string().min(8).max(200).optional().describe("Operation key for at-most-once sends: reuse the SAME key when retrying a send whose outcome you did not see; a settled key answers with the original message and never sends twice."),
8
10
  }, async (params) => {
9
11
  const result = await client.post("/api/v1/messages/sms/send", params);
10
12
  return formatResult(result);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conduyt-mcp",
3
- "version": "4.24.0",
3
+ "version": "4.25.0",
4
4
  "description": "MCP server for Conduyt CRM — expose CRM operations as AI-accessible tools",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,10 +1,10 @@
1
1
  {
2
- "generatedAt": "2026-09-05T14:07:22.993Z",
2
+ "generatedAt": "2026-09-05T15:24:32.841Z",
3
3
  "toolCount": 204,
4
- "totalEndpoints": 908,
4
+ "totalEndpoints": 909,
5
5
  "counts": {
6
6
  "covered": 189,
7
- "excluded": 273,
7
+ "excluded": 274,
8
8
  "planned": 446,
9
9
  "uncategorized": 0
10
10
  },
@@ -1649,6 +1649,10 @@
1649
1649
  "status": "excluded",
1650
1650
  "reason": "CRON_SECRET-gated infrastructure jobs; never key-callable"
1651
1651
  },
1652
+ "GET /api/v1/cron/project-blue-inbound-reconcile": {
1653
+ "status": "excluded",
1654
+ "reason": "CRON_SECRET-gated infrastructure jobs; never key-callable"
1655
+ },
1652
1656
  "GET /api/v1/cron/prune-screen-share-sessions": {
1653
1657
  "status": "excluded",
1654
1658
  "reason": "CRON_SECRET-gated infrastructure jobs; never key-callable"