@smartytalent/mcp-tools 0.1.33-dev.31 → 0.1.33-dev.33
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 +366 -2
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -255,6 +255,24 @@
|
|
|
255
255
|
}
|
|
256
256
|
}
|
|
257
257
|
},
|
|
258
|
+
"boeCalendar": {
|
|
259
|
+
"title": "TenantRelationshipsBoeCalendarSchema",
|
|
260
|
+
"type": "object",
|
|
261
|
+
"description": "Boe's primary calendar. Denormalized here so workflow seeds and FE can resolve it in one tenant fetch instead of a list_calendars round trip. Mirror of boeUser semantics: written by tenant onboarding / workflow seeding, not client-writable via tenant PATCH. May be null on tenants provisioned before boe calendars existed - fall back to GET /v1/calendars?filterOwnerId=boeUserId.",
|
|
262
|
+
"properties": {
|
|
263
|
+
"data": {
|
|
264
|
+
"type": "object",
|
|
265
|
+
"properties": {
|
|
266
|
+
"type": {
|
|
267
|
+
"type": "string"
|
|
268
|
+
},
|
|
269
|
+
"id": {
|
|
270
|
+
"type": "string"
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
},
|
|
258
276
|
"feedbacks": {
|
|
259
277
|
"title": "TenantRelationshipsFeedbacksSchema",
|
|
260
278
|
"type": "object",
|
|
@@ -546,6 +564,24 @@
|
|
|
546
564
|
}
|
|
547
565
|
}
|
|
548
566
|
},
|
|
567
|
+
"boeCalendar": {
|
|
568
|
+
"title": "TenantRelationshipsBoeCalendarSchema",
|
|
569
|
+
"type": "object",
|
|
570
|
+
"description": "Boe's primary calendar. Denormalized here so workflow seeds and FE can resolve it in one tenant fetch instead of a list_calendars round trip. Mirror of boeUser semantics: written by tenant onboarding / workflow seeding, not client-writable via tenant PATCH. May be null on tenants provisioned before boe calendars existed - fall back to GET /v1/calendars?filterOwnerId=boeUserId.",
|
|
571
|
+
"properties": {
|
|
572
|
+
"data": {
|
|
573
|
+
"type": "object",
|
|
574
|
+
"properties": {
|
|
575
|
+
"type": {
|
|
576
|
+
"type": "string"
|
|
577
|
+
},
|
|
578
|
+
"id": {
|
|
579
|
+
"type": "string"
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
},
|
|
549
585
|
"feedbacks": {
|
|
550
586
|
"title": "TenantRelationshipsFeedbacksSchema",
|
|
551
587
|
"type": "object",
|
|
@@ -14253,6 +14289,89 @@
|
|
|
14253
14289
|
"duration": {
|
|
14254
14290
|
"type": "integer"
|
|
14255
14291
|
},
|
|
14292
|
+
"meetingType": {
|
|
14293
|
+
"type": "string",
|
|
14294
|
+
"enum": [
|
|
14295
|
+
"chime",
|
|
14296
|
+
"recall",
|
|
14297
|
+
"external"
|
|
14298
|
+
],
|
|
14299
|
+
"description": "Meeting kind. `chime` = in-product Chime SDK session; `recall` = third-party meeting (Zoom/Meet/Teams/Webex) where a recall.ai bot joins to record + transcribe; `external` = third-party meeting tracked on calendar without a bot."
|
|
14300
|
+
},
|
|
14301
|
+
"provider": {
|
|
14302
|
+
"type": "string",
|
|
14303
|
+
"enum": [
|
|
14304
|
+
"chime",
|
|
14305
|
+
"zoom",
|
|
14306
|
+
"meet",
|
|
14307
|
+
"teams",
|
|
14308
|
+
"webex",
|
|
14309
|
+
"other"
|
|
14310
|
+
],
|
|
14311
|
+
"description": "Where the meeting actually runs. Drives URL parsing and bot dispatch capability."
|
|
14312
|
+
},
|
|
14313
|
+
"joinUrl": {
|
|
14314
|
+
"type": "string",
|
|
14315
|
+
"description": "Third-party meeting URL (Zoom/Meet/Teams/Webex). Null on chime meetings."
|
|
14316
|
+
},
|
|
14317
|
+
"joinPassword": {
|
|
14318
|
+
"type": "string",
|
|
14319
|
+
"description": "Optional passcode (most often Zoom)."
|
|
14320
|
+
},
|
|
14321
|
+
"sourceType": {
|
|
14322
|
+
"type": "string",
|
|
14323
|
+
"description": "Originating resource type. `emails` when the invite arrived via email; null for manually created meetings."
|
|
14324
|
+
},
|
|
14325
|
+
"sourceId": {
|
|
14326
|
+
"type": "string",
|
|
14327
|
+
"description": "ID of the source resource (e.g. emailId)."
|
|
14328
|
+
},
|
|
14329
|
+
"recall": {
|
|
14330
|
+
"title": "MeetingRecallSchema",
|
|
14331
|
+
"type": "object",
|
|
14332
|
+
"description": "recall.ai bot session metadata. Only populated on meetingType=recall.",
|
|
14333
|
+
"properties": {
|
|
14334
|
+
"botId": {
|
|
14335
|
+
"type": "string",
|
|
14336
|
+
"description": "recall.ai's identifier for the dispatched bot."
|
|
14337
|
+
},
|
|
14338
|
+
"botStatus": {
|
|
14339
|
+
"type": "string",
|
|
14340
|
+
"enum": [
|
|
14341
|
+
"idle",
|
|
14342
|
+
"dispatched",
|
|
14343
|
+
"joined",
|
|
14344
|
+
"recording",
|
|
14345
|
+
"ended",
|
|
14346
|
+
"failed"
|
|
14347
|
+
],
|
|
14348
|
+
"description": "Bot lifecycle. Drives the workflow's wait-for-end step."
|
|
14349
|
+
},
|
|
14350
|
+
"joinedAt": {
|
|
14351
|
+
"type": "string",
|
|
14352
|
+
"format": "date-time"
|
|
14353
|
+
},
|
|
14354
|
+
"endedAt": {
|
|
14355
|
+
"type": "string",
|
|
14356
|
+
"format": "date-time"
|
|
14357
|
+
},
|
|
14358
|
+
"webhookId": {
|
|
14359
|
+
"type": "string",
|
|
14360
|
+
"description": "Identifier returned by recall.ai for the webhook subscription, useful for debugging callback delivery."
|
|
14361
|
+
}
|
|
14362
|
+
}
|
|
14363
|
+
},
|
|
14364
|
+
"recordingUrl": {
|
|
14365
|
+
"type": "string",
|
|
14366
|
+
"description": "Post-meeting recording URL (recall.ai-hosted or copied to S3). Populated by the webhook handler after the bot finishes."
|
|
14367
|
+
},
|
|
14368
|
+
"transcript": {
|
|
14369
|
+
"type": "object",
|
|
14370
|
+
"description": "Post-meeting transcript. Multilingual dict like calls: { langCode: text }.",
|
|
14371
|
+
"additionalProperties": {
|
|
14372
|
+
"type": "string"
|
|
14373
|
+
}
|
|
14374
|
+
},
|
|
14256
14375
|
"mediaRegion": {
|
|
14257
14376
|
"type": "string"
|
|
14258
14377
|
},
|
|
@@ -14320,6 +14439,78 @@
|
|
|
14320
14439
|
}
|
|
14321
14440
|
}
|
|
14322
14441
|
}
|
|
14442
|
+
},
|
|
14443
|
+
"calendar": {
|
|
14444
|
+
"title": "MeetingRelationshipsCalendarSchema",
|
|
14445
|
+
"type": "object",
|
|
14446
|
+
"description": "Calendar this meeting is booked on. Typically boe.calendar for recall meetings, or a shared room calendar for chime.",
|
|
14447
|
+
"properties": {
|
|
14448
|
+
"data": {
|
|
14449
|
+
"type": "object",
|
|
14450
|
+
"properties": {
|
|
14451
|
+
"type": {
|
|
14452
|
+
"type": "string"
|
|
14453
|
+
},
|
|
14454
|
+
"id": {
|
|
14455
|
+
"type": "string"
|
|
14456
|
+
}
|
|
14457
|
+
}
|
|
14458
|
+
}
|
|
14459
|
+
}
|
|
14460
|
+
},
|
|
14461
|
+
"conversation": {
|
|
14462
|
+
"title": "MeetingRelationshipsConversationSchema",
|
|
14463
|
+
"type": "object",
|
|
14464
|
+
"description": "Conversation this meeting is threaded into. The post-meeting AI summary lands as a comment on this conversation.",
|
|
14465
|
+
"properties": {
|
|
14466
|
+
"data": {
|
|
14467
|
+
"type": "object",
|
|
14468
|
+
"properties": {
|
|
14469
|
+
"type": {
|
|
14470
|
+
"type": "string"
|
|
14471
|
+
},
|
|
14472
|
+
"id": {
|
|
14473
|
+
"type": "string"
|
|
14474
|
+
}
|
|
14475
|
+
}
|
|
14476
|
+
}
|
|
14477
|
+
}
|
|
14478
|
+
},
|
|
14479
|
+
"candidate": {
|
|
14480
|
+
"title": "MeetingRelationshipsCandidateSchema",
|
|
14481
|
+
"type": "object",
|
|
14482
|
+
"description": "Candidate the meeting is about, when known (e.g. interview).",
|
|
14483
|
+
"properties": {
|
|
14484
|
+
"data": {
|
|
14485
|
+
"type": "object",
|
|
14486
|
+
"properties": {
|
|
14487
|
+
"type": {
|
|
14488
|
+
"type": "string"
|
|
14489
|
+
},
|
|
14490
|
+
"id": {
|
|
14491
|
+
"type": "string"
|
|
14492
|
+
}
|
|
14493
|
+
}
|
|
14494
|
+
}
|
|
14495
|
+
}
|
|
14496
|
+
},
|
|
14497
|
+
"talent": {
|
|
14498
|
+
"title": "MeetingRelationshipsTalentSchema",
|
|
14499
|
+
"type": "object",
|
|
14500
|
+
"description": "Talent the meeting is about, when known.",
|
|
14501
|
+
"properties": {
|
|
14502
|
+
"data": {
|
|
14503
|
+
"type": "object",
|
|
14504
|
+
"properties": {
|
|
14505
|
+
"type": {
|
|
14506
|
+
"type": "string"
|
|
14507
|
+
},
|
|
14508
|
+
"id": {
|
|
14509
|
+
"type": "string"
|
|
14510
|
+
}
|
|
14511
|
+
}
|
|
14512
|
+
}
|
|
14513
|
+
}
|
|
14323
14514
|
}
|
|
14324
14515
|
}
|
|
14325
14516
|
}
|
|
@@ -14404,6 +14595,89 @@
|
|
|
14404
14595
|
"duration": {
|
|
14405
14596
|
"type": "integer"
|
|
14406
14597
|
},
|
|
14598
|
+
"meetingType": {
|
|
14599
|
+
"type": "string",
|
|
14600
|
+
"enum": [
|
|
14601
|
+
"chime",
|
|
14602
|
+
"recall",
|
|
14603
|
+
"external"
|
|
14604
|
+
],
|
|
14605
|
+
"description": "Meeting kind. `chime` = in-product Chime SDK session; `recall` = third-party meeting (Zoom/Meet/Teams/Webex) where a recall.ai bot joins to record + transcribe; `external` = third-party meeting tracked on calendar without a bot."
|
|
14606
|
+
},
|
|
14607
|
+
"provider": {
|
|
14608
|
+
"type": "string",
|
|
14609
|
+
"enum": [
|
|
14610
|
+
"chime",
|
|
14611
|
+
"zoom",
|
|
14612
|
+
"meet",
|
|
14613
|
+
"teams",
|
|
14614
|
+
"webex",
|
|
14615
|
+
"other"
|
|
14616
|
+
],
|
|
14617
|
+
"description": "Where the meeting actually runs. Drives URL parsing and bot dispatch capability."
|
|
14618
|
+
},
|
|
14619
|
+
"joinUrl": {
|
|
14620
|
+
"type": "string",
|
|
14621
|
+
"description": "Third-party meeting URL (Zoom/Meet/Teams/Webex). Null on chime meetings."
|
|
14622
|
+
},
|
|
14623
|
+
"joinPassword": {
|
|
14624
|
+
"type": "string",
|
|
14625
|
+
"description": "Optional passcode (most often Zoom)."
|
|
14626
|
+
},
|
|
14627
|
+
"sourceType": {
|
|
14628
|
+
"type": "string",
|
|
14629
|
+
"description": "Originating resource type. `emails` when the invite arrived via email; null for manually created meetings."
|
|
14630
|
+
},
|
|
14631
|
+
"sourceId": {
|
|
14632
|
+
"type": "string",
|
|
14633
|
+
"description": "ID of the source resource (e.g. emailId)."
|
|
14634
|
+
},
|
|
14635
|
+
"recall": {
|
|
14636
|
+
"title": "MeetingRecallSchema",
|
|
14637
|
+
"type": "object",
|
|
14638
|
+
"description": "recall.ai bot session metadata. Only populated on meetingType=recall.",
|
|
14639
|
+
"properties": {
|
|
14640
|
+
"botId": {
|
|
14641
|
+
"type": "string",
|
|
14642
|
+
"description": "recall.ai's identifier for the dispatched bot."
|
|
14643
|
+
},
|
|
14644
|
+
"botStatus": {
|
|
14645
|
+
"type": "string",
|
|
14646
|
+
"enum": [
|
|
14647
|
+
"idle",
|
|
14648
|
+
"dispatched",
|
|
14649
|
+
"joined",
|
|
14650
|
+
"recording",
|
|
14651
|
+
"ended",
|
|
14652
|
+
"failed"
|
|
14653
|
+
],
|
|
14654
|
+
"description": "Bot lifecycle. Drives the workflow's wait-for-end step."
|
|
14655
|
+
},
|
|
14656
|
+
"joinedAt": {
|
|
14657
|
+
"type": "string",
|
|
14658
|
+
"format": "date-time"
|
|
14659
|
+
},
|
|
14660
|
+
"endedAt": {
|
|
14661
|
+
"type": "string",
|
|
14662
|
+
"format": "date-time"
|
|
14663
|
+
},
|
|
14664
|
+
"webhookId": {
|
|
14665
|
+
"type": "string",
|
|
14666
|
+
"description": "Identifier returned by recall.ai for the webhook subscription, useful for debugging callback delivery."
|
|
14667
|
+
}
|
|
14668
|
+
}
|
|
14669
|
+
},
|
|
14670
|
+
"recordingUrl": {
|
|
14671
|
+
"type": "string",
|
|
14672
|
+
"description": "Post-meeting recording URL (recall.ai-hosted or copied to S3). Populated by the webhook handler after the bot finishes."
|
|
14673
|
+
},
|
|
14674
|
+
"transcript": {
|
|
14675
|
+
"type": "object",
|
|
14676
|
+
"description": "Post-meeting transcript. Multilingual dict like calls: { langCode: text }.",
|
|
14677
|
+
"additionalProperties": {
|
|
14678
|
+
"type": "string"
|
|
14679
|
+
}
|
|
14680
|
+
},
|
|
14407
14681
|
"mediaRegion": {
|
|
14408
14682
|
"type": "string"
|
|
14409
14683
|
},
|
|
@@ -17080,6 +17354,40 @@
|
|
|
17080
17354
|
"operationId": "webhookOptions"
|
|
17081
17355
|
}
|
|
17082
17356
|
},
|
|
17357
|
+
{
|
|
17358
|
+
"name": "recall_webhook",
|
|
17359
|
+
"description": "Recall.ai bot lifecycle webhook",
|
|
17360
|
+
"inputSchema": {
|
|
17361
|
+
"type": "object",
|
|
17362
|
+
"properties": {
|
|
17363
|
+
"event": {
|
|
17364
|
+
"type": "string",
|
|
17365
|
+
"description": "Recall lifecycle event type (e.g. bot.done, bot.in_call_recording, bot.fatal)."
|
|
17366
|
+
},
|
|
17367
|
+
"data": {
|
|
17368
|
+
"type": "object"
|
|
17369
|
+
}
|
|
17370
|
+
}
|
|
17371
|
+
},
|
|
17372
|
+
"_meta": {
|
|
17373
|
+
"method": "POST",
|
|
17374
|
+
"path": "/v1/webhooks/recall/{tenantId}/{meetingId}",
|
|
17375
|
+
"operationId": "recallWebhook"
|
|
17376
|
+
}
|
|
17377
|
+
},
|
|
17378
|
+
{
|
|
17379
|
+
"name": "recall_webhook_options",
|
|
17380
|
+
"description": "Recall webhook CORS preflight",
|
|
17381
|
+
"inputSchema": {
|
|
17382
|
+
"type": "object",
|
|
17383
|
+
"properties": {}
|
|
17384
|
+
},
|
|
17385
|
+
"_meta": {
|
|
17386
|
+
"method": "OPTIONS",
|
|
17387
|
+
"path": "/v1/webhooks/recall/{tenantId}/{meetingId}",
|
|
17388
|
+
"operationId": "recallWebhookOptions"
|
|
17389
|
+
}
|
|
17390
|
+
},
|
|
17083
17391
|
{
|
|
17084
17392
|
"name": "list_finders",
|
|
17085
17393
|
"description": "List Finders",
|
|
@@ -18134,7 +18442,35 @@
|
|
|
18134
18442
|
"type": "integer"
|
|
18135
18443
|
},
|
|
18136
18444
|
"workingHours": {
|
|
18137
|
-
"
|
|
18445
|
+
"title": "CalendarWorkingHoursSchema",
|
|
18446
|
+
"type": "object",
|
|
18447
|
+
"description": "Recurring weekly schedule. days[] uses tokens (mon/tue/wed/thu/fri/sat/sun); startHour/endHour are local 24h numbers. Single type used by Calendar read/create/update so PATCH callers get the same autocomplete as readers.",
|
|
18448
|
+
"properties": {
|
|
18449
|
+
"timezone": {
|
|
18450
|
+
"type": "string"
|
|
18451
|
+
},
|
|
18452
|
+
"days": {
|
|
18453
|
+
"type": "array",
|
|
18454
|
+
"items": {
|
|
18455
|
+
"type": "string",
|
|
18456
|
+
"enum": [
|
|
18457
|
+
"mon",
|
|
18458
|
+
"tue",
|
|
18459
|
+
"wed",
|
|
18460
|
+
"thu",
|
|
18461
|
+
"fri",
|
|
18462
|
+
"sat",
|
|
18463
|
+
"sun"
|
|
18464
|
+
]
|
|
18465
|
+
}
|
|
18466
|
+
},
|
|
18467
|
+
"startHour": {
|
|
18468
|
+
"type": "integer"
|
|
18469
|
+
},
|
|
18470
|
+
"endHour": {
|
|
18471
|
+
"type": "integer"
|
|
18472
|
+
}
|
|
18473
|
+
}
|
|
18138
18474
|
}
|
|
18139
18475
|
}
|
|
18140
18476
|
}
|
|
@@ -18206,7 +18542,35 @@
|
|
|
18206
18542
|
"type": "integer"
|
|
18207
18543
|
},
|
|
18208
18544
|
"workingHours": {
|
|
18209
|
-
"
|
|
18545
|
+
"title": "CalendarWorkingHoursSchema",
|
|
18546
|
+
"type": "object",
|
|
18547
|
+
"description": "Recurring weekly schedule. days[] uses tokens (mon/tue/wed/thu/fri/sat/sun); startHour/endHour are local 24h numbers. Single type used by Calendar read/create/update so PATCH callers get the same autocomplete as readers.",
|
|
18548
|
+
"properties": {
|
|
18549
|
+
"timezone": {
|
|
18550
|
+
"type": "string"
|
|
18551
|
+
},
|
|
18552
|
+
"days": {
|
|
18553
|
+
"type": "array",
|
|
18554
|
+
"items": {
|
|
18555
|
+
"type": "string",
|
|
18556
|
+
"enum": [
|
|
18557
|
+
"mon",
|
|
18558
|
+
"tue",
|
|
18559
|
+
"wed",
|
|
18560
|
+
"thu",
|
|
18561
|
+
"fri",
|
|
18562
|
+
"sat",
|
|
18563
|
+
"sun"
|
|
18564
|
+
]
|
|
18565
|
+
}
|
|
18566
|
+
},
|
|
18567
|
+
"startHour": {
|
|
18568
|
+
"type": "integer"
|
|
18569
|
+
},
|
|
18570
|
+
"endHour": {
|
|
18571
|
+
"type": "integer"
|
|
18572
|
+
}
|
|
18573
|
+
}
|
|
18210
18574
|
}
|
|
18211
18575
|
}
|
|
18212
18576
|
}
|