@smartytalent/mcp-tools 0.1.33-dev.32 → 0.1.33-dev.34
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 +278 -3
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -12012,7 +12012,8 @@
|
|
|
12012
12012
|
"data": {
|
|
12013
12013
|
"type": "object",
|
|
12014
12014
|
"required": [
|
|
12015
|
-
"type"
|
|
12015
|
+
"type",
|
|
12016
|
+
"id"
|
|
12016
12017
|
],
|
|
12017
12018
|
"properties": {
|
|
12018
12019
|
"type": {
|
|
@@ -14289,6 +14290,89 @@
|
|
|
14289
14290
|
"duration": {
|
|
14290
14291
|
"type": "integer"
|
|
14291
14292
|
},
|
|
14293
|
+
"meetingType": {
|
|
14294
|
+
"type": "string",
|
|
14295
|
+
"enum": [
|
|
14296
|
+
"chime",
|
|
14297
|
+
"recall",
|
|
14298
|
+
"external"
|
|
14299
|
+
],
|
|
14300
|
+
"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."
|
|
14301
|
+
},
|
|
14302
|
+
"provider": {
|
|
14303
|
+
"type": "string",
|
|
14304
|
+
"enum": [
|
|
14305
|
+
"chime",
|
|
14306
|
+
"zoom",
|
|
14307
|
+
"meet",
|
|
14308
|
+
"teams",
|
|
14309
|
+
"webex",
|
|
14310
|
+
"other"
|
|
14311
|
+
],
|
|
14312
|
+
"description": "Where the meeting actually runs. Drives URL parsing and bot dispatch capability."
|
|
14313
|
+
},
|
|
14314
|
+
"joinUrl": {
|
|
14315
|
+
"type": "string",
|
|
14316
|
+
"description": "Third-party meeting URL (Zoom/Meet/Teams/Webex). Null on chime meetings."
|
|
14317
|
+
},
|
|
14318
|
+
"joinPassword": {
|
|
14319
|
+
"type": "string",
|
|
14320
|
+
"description": "Optional passcode (most often Zoom)."
|
|
14321
|
+
},
|
|
14322
|
+
"sourceType": {
|
|
14323
|
+
"type": "string",
|
|
14324
|
+
"description": "Originating resource type. `emails` when the invite arrived via email; null for manually created meetings."
|
|
14325
|
+
},
|
|
14326
|
+
"sourceId": {
|
|
14327
|
+
"type": "string",
|
|
14328
|
+
"description": "ID of the source resource (e.g. emailId)."
|
|
14329
|
+
},
|
|
14330
|
+
"recall": {
|
|
14331
|
+
"title": "MeetingRecallSchema",
|
|
14332
|
+
"type": "object",
|
|
14333
|
+
"description": "recall.ai bot session metadata. Only populated on meetingType=recall.",
|
|
14334
|
+
"properties": {
|
|
14335
|
+
"botId": {
|
|
14336
|
+
"type": "string",
|
|
14337
|
+
"description": "recall.ai's identifier for the dispatched bot."
|
|
14338
|
+
},
|
|
14339
|
+
"botStatus": {
|
|
14340
|
+
"type": "string",
|
|
14341
|
+
"enum": [
|
|
14342
|
+
"idle",
|
|
14343
|
+
"dispatched",
|
|
14344
|
+
"joined",
|
|
14345
|
+
"recording",
|
|
14346
|
+
"ended",
|
|
14347
|
+
"failed"
|
|
14348
|
+
],
|
|
14349
|
+
"description": "Bot lifecycle. Drives the workflow's wait-for-end step."
|
|
14350
|
+
},
|
|
14351
|
+
"joinedAt": {
|
|
14352
|
+
"type": "string",
|
|
14353
|
+
"format": "date-time"
|
|
14354
|
+
},
|
|
14355
|
+
"endedAt": {
|
|
14356
|
+
"type": "string",
|
|
14357
|
+
"format": "date-time"
|
|
14358
|
+
},
|
|
14359
|
+
"webhookId": {
|
|
14360
|
+
"type": "string",
|
|
14361
|
+
"description": "Identifier returned by recall.ai for the webhook subscription, useful for debugging callback delivery."
|
|
14362
|
+
}
|
|
14363
|
+
}
|
|
14364
|
+
},
|
|
14365
|
+
"recordingUrl": {
|
|
14366
|
+
"type": "string",
|
|
14367
|
+
"description": "Post-meeting recording URL (recall.ai-hosted or copied to S3). Populated by the webhook handler after the bot finishes."
|
|
14368
|
+
},
|
|
14369
|
+
"transcript": {
|
|
14370
|
+
"type": "object",
|
|
14371
|
+
"description": "Post-meeting transcript. Multilingual dict like calls: { langCode: text }.",
|
|
14372
|
+
"additionalProperties": {
|
|
14373
|
+
"type": "string"
|
|
14374
|
+
}
|
|
14375
|
+
},
|
|
14292
14376
|
"mediaRegion": {
|
|
14293
14377
|
"type": "string"
|
|
14294
14378
|
},
|
|
@@ -14356,6 +14440,78 @@
|
|
|
14356
14440
|
}
|
|
14357
14441
|
}
|
|
14358
14442
|
}
|
|
14443
|
+
},
|
|
14444
|
+
"calendar": {
|
|
14445
|
+
"title": "MeetingRelationshipsCalendarSchema",
|
|
14446
|
+
"type": "object",
|
|
14447
|
+
"description": "Calendar this meeting is booked on. Typically boe.calendar for recall meetings, or a shared room calendar for chime.",
|
|
14448
|
+
"properties": {
|
|
14449
|
+
"data": {
|
|
14450
|
+
"type": "object",
|
|
14451
|
+
"properties": {
|
|
14452
|
+
"type": {
|
|
14453
|
+
"type": "string"
|
|
14454
|
+
},
|
|
14455
|
+
"id": {
|
|
14456
|
+
"type": "string"
|
|
14457
|
+
}
|
|
14458
|
+
}
|
|
14459
|
+
}
|
|
14460
|
+
}
|
|
14461
|
+
},
|
|
14462
|
+
"conversation": {
|
|
14463
|
+
"title": "MeetingRelationshipsConversationSchema",
|
|
14464
|
+
"type": "object",
|
|
14465
|
+
"description": "Conversation this meeting is threaded into. The post-meeting AI summary lands as a comment on this conversation.",
|
|
14466
|
+
"properties": {
|
|
14467
|
+
"data": {
|
|
14468
|
+
"type": "object",
|
|
14469
|
+
"properties": {
|
|
14470
|
+
"type": {
|
|
14471
|
+
"type": "string"
|
|
14472
|
+
},
|
|
14473
|
+
"id": {
|
|
14474
|
+
"type": "string"
|
|
14475
|
+
}
|
|
14476
|
+
}
|
|
14477
|
+
}
|
|
14478
|
+
}
|
|
14479
|
+
},
|
|
14480
|
+
"candidate": {
|
|
14481
|
+
"title": "MeetingRelationshipsCandidateSchema",
|
|
14482
|
+
"type": "object",
|
|
14483
|
+
"description": "Candidate the meeting is about, when known (e.g. interview).",
|
|
14484
|
+
"properties": {
|
|
14485
|
+
"data": {
|
|
14486
|
+
"type": "object",
|
|
14487
|
+
"properties": {
|
|
14488
|
+
"type": {
|
|
14489
|
+
"type": "string"
|
|
14490
|
+
},
|
|
14491
|
+
"id": {
|
|
14492
|
+
"type": "string"
|
|
14493
|
+
}
|
|
14494
|
+
}
|
|
14495
|
+
}
|
|
14496
|
+
}
|
|
14497
|
+
},
|
|
14498
|
+
"talent": {
|
|
14499
|
+
"title": "MeetingRelationshipsTalentSchema",
|
|
14500
|
+
"type": "object",
|
|
14501
|
+
"description": "Talent the meeting is about, when known.",
|
|
14502
|
+
"properties": {
|
|
14503
|
+
"data": {
|
|
14504
|
+
"type": "object",
|
|
14505
|
+
"properties": {
|
|
14506
|
+
"type": {
|
|
14507
|
+
"type": "string"
|
|
14508
|
+
},
|
|
14509
|
+
"id": {
|
|
14510
|
+
"type": "string"
|
|
14511
|
+
}
|
|
14512
|
+
}
|
|
14513
|
+
}
|
|
14514
|
+
}
|
|
14359
14515
|
}
|
|
14360
14516
|
}
|
|
14361
14517
|
}
|
|
@@ -14440,6 +14596,89 @@
|
|
|
14440
14596
|
"duration": {
|
|
14441
14597
|
"type": "integer"
|
|
14442
14598
|
},
|
|
14599
|
+
"meetingType": {
|
|
14600
|
+
"type": "string",
|
|
14601
|
+
"enum": [
|
|
14602
|
+
"chime",
|
|
14603
|
+
"recall",
|
|
14604
|
+
"external"
|
|
14605
|
+
],
|
|
14606
|
+
"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."
|
|
14607
|
+
},
|
|
14608
|
+
"provider": {
|
|
14609
|
+
"type": "string",
|
|
14610
|
+
"enum": [
|
|
14611
|
+
"chime",
|
|
14612
|
+
"zoom",
|
|
14613
|
+
"meet",
|
|
14614
|
+
"teams",
|
|
14615
|
+
"webex",
|
|
14616
|
+
"other"
|
|
14617
|
+
],
|
|
14618
|
+
"description": "Where the meeting actually runs. Drives URL parsing and bot dispatch capability."
|
|
14619
|
+
},
|
|
14620
|
+
"joinUrl": {
|
|
14621
|
+
"type": "string",
|
|
14622
|
+
"description": "Third-party meeting URL (Zoom/Meet/Teams/Webex). Null on chime meetings."
|
|
14623
|
+
},
|
|
14624
|
+
"joinPassword": {
|
|
14625
|
+
"type": "string",
|
|
14626
|
+
"description": "Optional passcode (most often Zoom)."
|
|
14627
|
+
},
|
|
14628
|
+
"sourceType": {
|
|
14629
|
+
"type": "string",
|
|
14630
|
+
"description": "Originating resource type. `emails` when the invite arrived via email; null for manually created meetings."
|
|
14631
|
+
},
|
|
14632
|
+
"sourceId": {
|
|
14633
|
+
"type": "string",
|
|
14634
|
+
"description": "ID of the source resource (e.g. emailId)."
|
|
14635
|
+
},
|
|
14636
|
+
"recall": {
|
|
14637
|
+
"title": "MeetingRecallSchema",
|
|
14638
|
+
"type": "object",
|
|
14639
|
+
"description": "recall.ai bot session metadata. Only populated on meetingType=recall.",
|
|
14640
|
+
"properties": {
|
|
14641
|
+
"botId": {
|
|
14642
|
+
"type": "string",
|
|
14643
|
+
"description": "recall.ai's identifier for the dispatched bot."
|
|
14644
|
+
},
|
|
14645
|
+
"botStatus": {
|
|
14646
|
+
"type": "string",
|
|
14647
|
+
"enum": [
|
|
14648
|
+
"idle",
|
|
14649
|
+
"dispatched",
|
|
14650
|
+
"joined",
|
|
14651
|
+
"recording",
|
|
14652
|
+
"ended",
|
|
14653
|
+
"failed"
|
|
14654
|
+
],
|
|
14655
|
+
"description": "Bot lifecycle. Drives the workflow's wait-for-end step."
|
|
14656
|
+
},
|
|
14657
|
+
"joinedAt": {
|
|
14658
|
+
"type": "string",
|
|
14659
|
+
"format": "date-time"
|
|
14660
|
+
},
|
|
14661
|
+
"endedAt": {
|
|
14662
|
+
"type": "string",
|
|
14663
|
+
"format": "date-time"
|
|
14664
|
+
},
|
|
14665
|
+
"webhookId": {
|
|
14666
|
+
"type": "string",
|
|
14667
|
+
"description": "Identifier returned by recall.ai for the webhook subscription, useful for debugging callback delivery."
|
|
14668
|
+
}
|
|
14669
|
+
}
|
|
14670
|
+
},
|
|
14671
|
+
"recordingUrl": {
|
|
14672
|
+
"type": "string",
|
|
14673
|
+
"description": "Post-meeting recording URL (recall.ai-hosted or copied to S3). Populated by the webhook handler after the bot finishes."
|
|
14674
|
+
},
|
|
14675
|
+
"transcript": {
|
|
14676
|
+
"type": "object",
|
|
14677
|
+
"description": "Post-meeting transcript. Multilingual dict like calls: { langCode: text }.",
|
|
14678
|
+
"additionalProperties": {
|
|
14679
|
+
"type": "string"
|
|
14680
|
+
}
|
|
14681
|
+
},
|
|
14443
14682
|
"mediaRegion": {
|
|
14444
14683
|
"type": "string"
|
|
14445
14684
|
},
|
|
@@ -17116,6 +17355,40 @@
|
|
|
17116
17355
|
"operationId": "webhookOptions"
|
|
17117
17356
|
}
|
|
17118
17357
|
},
|
|
17358
|
+
{
|
|
17359
|
+
"name": "recall_webhook",
|
|
17360
|
+
"description": "Recall.ai bot lifecycle webhook",
|
|
17361
|
+
"inputSchema": {
|
|
17362
|
+
"type": "object",
|
|
17363
|
+
"properties": {
|
|
17364
|
+
"event": {
|
|
17365
|
+
"type": "string",
|
|
17366
|
+
"description": "Recall lifecycle event type (e.g. bot.done, bot.in_call_recording, bot.fatal)."
|
|
17367
|
+
},
|
|
17368
|
+
"data": {
|
|
17369
|
+
"type": "object"
|
|
17370
|
+
}
|
|
17371
|
+
}
|
|
17372
|
+
},
|
|
17373
|
+
"_meta": {
|
|
17374
|
+
"method": "POST",
|
|
17375
|
+
"path": "/v1/webhooks/recall/{tenantId}/{meetingId}",
|
|
17376
|
+
"operationId": "recallWebhook"
|
|
17377
|
+
}
|
|
17378
|
+
},
|
|
17379
|
+
{
|
|
17380
|
+
"name": "recall_webhook_options",
|
|
17381
|
+
"description": "Recall webhook CORS preflight",
|
|
17382
|
+
"inputSchema": {
|
|
17383
|
+
"type": "object",
|
|
17384
|
+
"properties": {}
|
|
17385
|
+
},
|
|
17386
|
+
"_meta": {
|
|
17387
|
+
"method": "OPTIONS",
|
|
17388
|
+
"path": "/v1/webhooks/recall/{tenantId}/{meetingId}",
|
|
17389
|
+
"operationId": "recallWebhookOptions"
|
|
17390
|
+
}
|
|
17391
|
+
},
|
|
17119
17392
|
{
|
|
17120
17393
|
"name": "list_finders",
|
|
17121
17394
|
"description": "List Finders",
|
|
@@ -18235,7 +18508,8 @@
|
|
|
18235
18508
|
"data": {
|
|
18236
18509
|
"type": "object",
|
|
18237
18510
|
"required": [
|
|
18238
|
-
"type"
|
|
18511
|
+
"type",
|
|
18512
|
+
"id"
|
|
18239
18513
|
],
|
|
18240
18514
|
"properties": {
|
|
18241
18515
|
"type": {
|
|
@@ -18535,7 +18809,8 @@
|
|
|
18535
18809
|
"data": {
|
|
18536
18810
|
"type": "object",
|
|
18537
18811
|
"required": [
|
|
18538
|
-
"type"
|
|
18812
|
+
"type",
|
|
18813
|
+
"id"
|
|
18539
18814
|
],
|
|
18540
18815
|
"properties": {
|
|
18541
18816
|
"type": {
|