@smartytalent/mcp-tools 0.4.9 → 0.4.11
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 +193 -2
- 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
|
},
|
|
@@ -18313,7 +18461,7 @@
|
|
|
18313
18461
|
},
|
|
18314
18462
|
"source": {
|
|
18315
18463
|
"type": "string",
|
|
18316
|
-
"description": "Derived server-side from the event prefix (erecruiter, lever). Read-only."
|
|
18464
|
+
"description": "Derived server-side from the event prefix (erecruiter, lever, teamtailor). Read-only."
|
|
18317
18465
|
},
|
|
18318
18466
|
"status": {
|
|
18319
18467
|
"type": "string",
|
|
@@ -18469,7 +18617,7 @@
|
|
|
18469
18617
|
},
|
|
18470
18618
|
"source": {
|
|
18471
18619
|
"type": "string",
|
|
18472
|
-
"description": "Derived server-side from the event prefix (erecruiter, lever). Read-only."
|
|
18620
|
+
"description": "Derived server-side from the event prefix (erecruiter, lever, teamtailor). Read-only."
|
|
18473
18621
|
},
|
|
18474
18622
|
"status": {
|
|
18475
18623
|
"type": "string",
|
|
@@ -18537,6 +18685,49 @@
|
|
|
18537
18685
|
"operationId": "operationOptions"
|
|
18538
18686
|
}
|
|
18539
18687
|
},
|
|
18688
|
+
{
|
|
18689
|
+
"name": "teamtailor_webhook",
|
|
18690
|
+
"description": "Teamtailor Company Webhook",
|
|
18691
|
+
"inputSchema": {
|
|
18692
|
+
"type": "object",
|
|
18693
|
+
"properties": {
|
|
18694
|
+
"payload": {
|
|
18695
|
+
"type": "object",
|
|
18696
|
+
"properties": {
|
|
18697
|
+
"event_name": {
|
|
18698
|
+
"type": "string",
|
|
18699
|
+
"description": "Teamtailor event, e.g. job_application.create."
|
|
18700
|
+
},
|
|
18701
|
+
"data": {
|
|
18702
|
+
"type": "object"
|
|
18703
|
+
}
|
|
18704
|
+
}
|
|
18705
|
+
},
|
|
18706
|
+
"signature": {
|
|
18707
|
+
"type": "string",
|
|
18708
|
+
"description": "Legacy v1 payload signature; verification uses the TT-Signature header (v2)."
|
|
18709
|
+
}
|
|
18710
|
+
}
|
|
18711
|
+
},
|
|
18712
|
+
"_meta": {
|
|
18713
|
+
"method": "POST",
|
|
18714
|
+
"path": "/v1/operations/teamtailor/{tenantId}",
|
|
18715
|
+
"operationId": "teamtailorWebhook"
|
|
18716
|
+
}
|
|
18717
|
+
},
|
|
18718
|
+
{
|
|
18719
|
+
"name": "teamtailor_webhook_options",
|
|
18720
|
+
"description": "Teamtailor webhook CORS preflight",
|
|
18721
|
+
"inputSchema": {
|
|
18722
|
+
"type": "object",
|
|
18723
|
+
"properties": {}
|
|
18724
|
+
},
|
|
18725
|
+
"_meta": {
|
|
18726
|
+
"method": "OPTIONS",
|
|
18727
|
+
"path": "/v1/operations/teamtailor/{tenantId}",
|
|
18728
|
+
"operationId": "teamtailorWebhookOptions"
|
|
18729
|
+
}
|
|
18730
|
+
},
|
|
18540
18731
|
{
|
|
18541
18732
|
"name": "list_assessments",
|
|
18542
18733
|
"description": "List Assessments",
|