@smartytalent/mcp-tools 0.4.9 → 0.4.10
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.json +148 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -203,12 +203,86 @@
|
|
|
203
203
|
"type": "string",
|
|
204
204
|
"description": "Twilio phone number SID"
|
|
205
205
|
},
|
|
206
|
+
"phoneNumber": {
|
|
207
|
+
"type": "string",
|
|
208
|
+
"description": "Provisioned phone number for non-twilio providers (telnyx/external)"
|
|
209
|
+
},
|
|
210
|
+
"telnyxPhoneNumberId": {
|
|
211
|
+
"type": "string",
|
|
212
|
+
"description": "Telnyx phone number id (provider telnyx)"
|
|
213
|
+
},
|
|
214
|
+
"provider": {
|
|
215
|
+
"type": "string",
|
|
216
|
+
"enum": [
|
|
217
|
+
"twilio",
|
|
218
|
+
"telnyx",
|
|
219
|
+
"external"
|
|
220
|
+
],
|
|
221
|
+
"description": "Which provider hosts the calling number"
|
|
222
|
+
},
|
|
223
|
+
"capabilities": {
|
|
224
|
+
"type": "object",
|
|
225
|
+
"description": "Capability snapshot of the calling number, stamped at assign. Absent on pre-capability assignments.",
|
|
226
|
+
"properties": {
|
|
227
|
+
"voice": {
|
|
228
|
+
"type": "boolean"
|
|
229
|
+
},
|
|
230
|
+
"sms": {
|
|
231
|
+
"type": "boolean"
|
|
232
|
+
},
|
|
233
|
+
"mms": {
|
|
234
|
+
"type": "boolean"
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
},
|
|
206
238
|
"provisionedAt": {
|
|
207
239
|
"type": "string",
|
|
208
240
|
"format": "date-time",
|
|
209
241
|
"description": "When calling was provisioned"
|
|
210
242
|
}
|
|
211
243
|
}
|
|
244
|
+
},
|
|
245
|
+
"messaging": {
|
|
246
|
+
"type": "object",
|
|
247
|
+
"description": "Optional dedicated SMS number (messaging slot). Absent = SMS rides the calling number. Outbound SMS prefers this number; it is never a voice caller-ID and never the virtual employee's phone.",
|
|
248
|
+
"properties": {
|
|
249
|
+
"phoneNumber": {
|
|
250
|
+
"type": "string",
|
|
251
|
+
"description": "The dedicated SMS number (E.164)"
|
|
252
|
+
},
|
|
253
|
+
"provider": {
|
|
254
|
+
"type": "string",
|
|
255
|
+
"enum": [
|
|
256
|
+
"twilio",
|
|
257
|
+
"telnyx",
|
|
258
|
+
"external"
|
|
259
|
+
]
|
|
260
|
+
},
|
|
261
|
+
"twilioPhoneSid": {
|
|
262
|
+
"type": "string"
|
|
263
|
+
},
|
|
264
|
+
"telnyxPhoneNumberId": {
|
|
265
|
+
"type": "string"
|
|
266
|
+
},
|
|
267
|
+
"enabled": {
|
|
268
|
+
"type": "boolean"
|
|
269
|
+
},
|
|
270
|
+
"capabilities": {
|
|
271
|
+
"type": "object",
|
|
272
|
+
"description": "Capability snapshot stamped at assign",
|
|
273
|
+
"properties": {
|
|
274
|
+
"voice": {
|
|
275
|
+
"type": "boolean"
|
|
276
|
+
},
|
|
277
|
+
"sms": {
|
|
278
|
+
"type": "boolean"
|
|
279
|
+
},
|
|
280
|
+
"mms": {
|
|
281
|
+
"type": "boolean"
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
}
|
|
212
286
|
}
|
|
213
287
|
}
|
|
214
288
|
},
|
|
@@ -529,12 +603,86 @@
|
|
|
529
603
|
"type": "string",
|
|
530
604
|
"description": "Twilio phone number SID"
|
|
531
605
|
},
|
|
606
|
+
"phoneNumber": {
|
|
607
|
+
"type": "string",
|
|
608
|
+
"description": "Provisioned phone number for non-twilio providers (telnyx/external)"
|
|
609
|
+
},
|
|
610
|
+
"telnyxPhoneNumberId": {
|
|
611
|
+
"type": "string",
|
|
612
|
+
"description": "Telnyx phone number id (provider telnyx)"
|
|
613
|
+
},
|
|
614
|
+
"provider": {
|
|
615
|
+
"type": "string",
|
|
616
|
+
"enum": [
|
|
617
|
+
"twilio",
|
|
618
|
+
"telnyx",
|
|
619
|
+
"external"
|
|
620
|
+
],
|
|
621
|
+
"description": "Which provider hosts the calling number"
|
|
622
|
+
},
|
|
623
|
+
"capabilities": {
|
|
624
|
+
"type": "object",
|
|
625
|
+
"description": "Capability snapshot of the calling number, stamped at assign. Absent on pre-capability assignments.",
|
|
626
|
+
"properties": {
|
|
627
|
+
"voice": {
|
|
628
|
+
"type": "boolean"
|
|
629
|
+
},
|
|
630
|
+
"sms": {
|
|
631
|
+
"type": "boolean"
|
|
632
|
+
},
|
|
633
|
+
"mms": {
|
|
634
|
+
"type": "boolean"
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
},
|
|
532
638
|
"provisionedAt": {
|
|
533
639
|
"type": "string",
|
|
534
640
|
"format": "date-time",
|
|
535
641
|
"description": "When calling was provisioned"
|
|
536
642
|
}
|
|
537
643
|
}
|
|
644
|
+
},
|
|
645
|
+
"messaging": {
|
|
646
|
+
"type": "object",
|
|
647
|
+
"description": "Optional dedicated SMS number (messaging slot). Absent = SMS rides the calling number. Outbound SMS prefers this number; it is never a voice caller-ID and never the virtual employee's phone.",
|
|
648
|
+
"properties": {
|
|
649
|
+
"phoneNumber": {
|
|
650
|
+
"type": "string",
|
|
651
|
+
"description": "The dedicated SMS number (E.164)"
|
|
652
|
+
},
|
|
653
|
+
"provider": {
|
|
654
|
+
"type": "string",
|
|
655
|
+
"enum": [
|
|
656
|
+
"twilio",
|
|
657
|
+
"telnyx",
|
|
658
|
+
"external"
|
|
659
|
+
]
|
|
660
|
+
},
|
|
661
|
+
"twilioPhoneSid": {
|
|
662
|
+
"type": "string"
|
|
663
|
+
},
|
|
664
|
+
"telnyxPhoneNumberId": {
|
|
665
|
+
"type": "string"
|
|
666
|
+
},
|
|
667
|
+
"enabled": {
|
|
668
|
+
"type": "boolean"
|
|
669
|
+
},
|
|
670
|
+
"capabilities": {
|
|
671
|
+
"type": "object",
|
|
672
|
+
"description": "Capability snapshot stamped at assign",
|
|
673
|
+
"properties": {
|
|
674
|
+
"voice": {
|
|
675
|
+
"type": "boolean"
|
|
676
|
+
},
|
|
677
|
+
"sms": {
|
|
678
|
+
"type": "boolean"
|
|
679
|
+
},
|
|
680
|
+
"mms": {
|
|
681
|
+
"type": "boolean"
|
|
682
|
+
}
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
}
|
|
538
686
|
}
|
|
539
687
|
}
|
|
540
688
|
},
|