conduyt-mcp 4.48.0 → 4.49.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/README.md CHANGED
@@ -86,6 +86,7 @@ MCP server for [Conduyt CRM](https://conduyt.app) — expose your CRM as AI-acce
86
86
  ### Messaging
87
87
  | Tool | Description |
88
88
  |------|-------------|
89
+ | `conduyt_sms_transports` | What a workflow Send SMS step can speak through today: Twilio numbers, Project Blue lines held by active reps, webhook provider count, FromK.ai coming soon |
89
90
  | `conduyt_send_sms` | Send SMS to a contact (max 1600 chars) |
90
91
  | `conduyt_send_email` | Send a single email to a contact |
91
92
 
@@ -1,6 +1,10 @@
1
1
  import { z } from "zod";
2
2
  import { formatResult } from "../client.js";
3
3
  export function registerMessagingTools(server, client) {
4
+ server.tool("conduyt_sms_transports", "What a workflow Send SMS step can speak through TODAY (GET /api/v1/sms/transports): twilio {connected, numbers[] = the account number + every active rep's assigned line, each a valid send_sms config.fromNumber}, projectBlue {connected, lines[] = Project Blue iPhone lines held by active reps, each lineId a valid config.projectBlueLineId for smsMode project_blue}, webhook {providers = active webhook providers for smsMode webhook}, fromk {status: coming_soon}. Use it before building or editing a send_sms step so you never configure a transport that is not connected. Requires automations:view.", {}, async () => {
5
+ const result = await client.get("/api/v1/sms/transports");
6
+ return formatResult(result);
7
+ });
4
8
  server.tool("conduyt_send_sms", "Send an SMS message to a contact. Contact must have a phone number and not have opted out. Max 1600 characters.", {
5
9
  contactId: z.string().describe("Contact UUID — must have a phone number on file"),
6
10
  body: z.string().describe("SMS message body (max 1600 characters)"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conduyt-mcp",
3
- "version": "4.48.0",
3
+ "version": "4.49.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,11 +1,11 @@
1
1
  {
2
- "generatedAt": "2026-09-11T16:21:54.034Z",
3
- "toolCount": 250,
4
- "totalEndpoints": 956,
2
+ "generatedAt": "2026-09-11T17:17:05.004Z",
3
+ "toolCount": 251,
4
+ "totalEndpoints": 958,
5
5
  "counts": {
6
- "covered": 232,
6
+ "covered": 233,
7
7
  "excluded": 284,
8
- "planned": 440,
8
+ "planned": 441,
9
9
  "uncategorized": 0
10
10
  },
11
11
  "matrix": {
@@ -2937,6 +2937,10 @@
2937
2937
  "status": "planned",
2938
2938
  "reason": "notification surfaces"
2939
2939
  },
2940
+ "GET /api/v1/ops/capacity": {
2941
+ "status": "planned",
2942
+ "reason": "operator capacity dashboard (#51, shipped 2026-09) — read-only queue/park telemetry; a typed conduyt_capacity_snapshot tool is agent-relevant for throughput questions"
2943
+ },
2940
2944
  "GET /api/v1/phone-numbers": {
2941
2945
  "status": "planned",
2942
2946
  "reason": "phone number inventory"
@@ -3845,6 +3849,12 @@
3845
3849
  "status": "planned",
3846
3850
  "reason": "SMS surfaces beyond send tools"
3847
3851
  },
3852
+ "GET /api/v1/sms/transports": {
3853
+ "status": "covered",
3854
+ "tools": [
3855
+ "conduyt_sms_transports"
3856
+ ]
3857
+ },
3848
3858
  "GET /api/v1/sso/connection": {
3849
3859
  "status": "excluded",
3850
3860
  "reason": "SAML/SSO configuration + protocol endpoints; interactive/IdP-facing"