@smartytalent/mcp-tools 0.1.33-dev.32 → 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 +272 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -14289,6 +14289,89 @@
|
|
|
14289
14289
|
"duration": {
|
|
14290
14290
|
"type": "integer"
|
|
14291
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
|
+
},
|
|
14292
14375
|
"mediaRegion": {
|
|
14293
14376
|
"type": "string"
|
|
14294
14377
|
},
|
|
@@ -14356,6 +14439,78 @@
|
|
|
14356
14439
|
}
|
|
14357
14440
|
}
|
|
14358
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
|
+
}
|
|
14359
14514
|
}
|
|
14360
14515
|
}
|
|
14361
14516
|
}
|
|
@@ -14440,6 +14595,89 @@
|
|
|
14440
14595
|
"duration": {
|
|
14441
14596
|
"type": "integer"
|
|
14442
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
|
+
},
|
|
14443
14681
|
"mediaRegion": {
|
|
14444
14682
|
"type": "string"
|
|
14445
14683
|
},
|
|
@@ -17116,6 +17354,40 @@
|
|
|
17116
17354
|
"operationId": "webhookOptions"
|
|
17117
17355
|
}
|
|
17118
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
|
+
},
|
|
17119
17391
|
{
|
|
17120
17392
|
"name": "list_finders",
|
|
17121
17393
|
"description": "List Finders",
|