@smartytalent/mcp-tools 0.1.33-dev.63 → 0.1.33-dev.65
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 +170 -2
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -942,7 +942,16 @@
|
|
|
942
942
|
"type": "string"
|
|
943
943
|
},
|
|
944
944
|
"isSystem": {
|
|
945
|
-
"type": "boolean"
|
|
945
|
+
"type": "boolean",
|
|
946
|
+
"description": "Marks tenant-internal system users (admins, integrations, the Boe bot). Distinct from `type` - `isSystem=true` only means 'not a regular end-user'; the human-vs-bot split lives in `type`."
|
|
947
|
+
},
|
|
948
|
+
"type": {
|
|
949
|
+
"type": "string",
|
|
950
|
+
"enum": [
|
|
951
|
+
"human",
|
|
952
|
+
"ai"
|
|
953
|
+
],
|
|
954
|
+
"description": "Discriminator for human-vs-bot users.\n 'ai' - Boe bot user. tenant.relationships.boeUser points at one\n of these per tenant. Drives the createMeetingAttendee\n AI-dispatch decision: principalType=user + user.type='ai'\n makes the meeting service spawn a Fargate bot instead of\n returning Chime join credentials.\n 'human' - regular user (recruiter, observer, candidate-with-account).\n null - legacy rows without the field; treated as 'human' by the\n server (safer default - we'd rather miss a bot dispatch\n than accidentally dispatch a Fargate task for a real human)."
|
|
946
955
|
},
|
|
947
956
|
"address": {
|
|
948
957
|
"type": "object",
|
|
@@ -1207,7 +1216,16 @@
|
|
|
1207
1216
|
"type": "string"
|
|
1208
1217
|
},
|
|
1209
1218
|
"isSystem": {
|
|
1210
|
-
"type": "boolean"
|
|
1219
|
+
"type": "boolean",
|
|
1220
|
+
"description": "Marks tenant-internal system users (admins, integrations, the Boe bot). Distinct from `type` - `isSystem=true` only means 'not a regular end-user'; the human-vs-bot split lives in `type`."
|
|
1221
|
+
},
|
|
1222
|
+
"type": {
|
|
1223
|
+
"type": "string",
|
|
1224
|
+
"enum": [
|
|
1225
|
+
"human",
|
|
1226
|
+
"ai"
|
|
1227
|
+
],
|
|
1228
|
+
"description": "Discriminator for human-vs-bot users.\n 'ai' - Boe bot user. tenant.relationships.boeUser points at one\n of these per tenant. Drives the createMeetingAttendee\n AI-dispatch decision: principalType=user + user.type='ai'\n makes the meeting service spawn a Fargate bot instead of\n returning Chime join credentials.\n 'human' - regular user (recruiter, observer, candidate-with-account).\n null - legacy rows without the field; treated as 'human' by the\n server (safer default - we'd rather miss a bot dispatch\n than accidentally dispatch a Fargate task for a real human)."
|
|
1211
1229
|
},
|
|
1212
1230
|
"address": {
|
|
1213
1231
|
"type": "object",
|
|
@@ -15514,6 +15532,156 @@
|
|
|
15514
15532
|
"operationId": "meetingAttendeesOptions"
|
|
15515
15533
|
}
|
|
15516
15534
|
},
|
|
15535
|
+
{
|
|
15536
|
+
"name": "create_guest_meeting_attendee",
|
|
15537
|
+
"description": "Create Guest Meeting Attendee",
|
|
15538
|
+
"inputSchema": {
|
|
15539
|
+
"title": "CreateMeetingAttendeeRequestBody",
|
|
15540
|
+
"type": "object",
|
|
15541
|
+
"required": [
|
|
15542
|
+
"data"
|
|
15543
|
+
],
|
|
15544
|
+
"properties": {
|
|
15545
|
+
"data": {
|
|
15546
|
+
"title": "CreateMeetingAttendeeRequestBodyData",
|
|
15547
|
+
"type": "object",
|
|
15548
|
+
"required": [
|
|
15549
|
+
"type",
|
|
15550
|
+
"attributes"
|
|
15551
|
+
],
|
|
15552
|
+
"properties": {
|
|
15553
|
+
"type": {
|
|
15554
|
+
"type": "string",
|
|
15555
|
+
"enum": [
|
|
15556
|
+
"attendees"
|
|
15557
|
+
]
|
|
15558
|
+
},
|
|
15559
|
+
"attributes": {
|
|
15560
|
+
"title": "MeetingAttendeeAttributesSchema",
|
|
15561
|
+
"type": "object",
|
|
15562
|
+
"description": "Chime attendee record - someone (or some bot) with a live or terminated\nChime SDK attendee for this meeting. Unified across human-auth +\nhuman-guest + AI; principalType + the optional relationships disambiguate.\nUsed both as the createMeetingAttendee request body shape (subset of fields\naccepted - server ignores fields it sets itself) and as the response shape.",
|
|
15563
|
+
"properties": {
|
|
15564
|
+
"chimeAttendeeId": {
|
|
15565
|
+
"type": "string",
|
|
15566
|
+
"description": "Chime SDK attendee id. Server-generated, immutable. Also the resource id of this attendee. Not accepted on the request - server allocates."
|
|
15567
|
+
},
|
|
15568
|
+
"externalUserId": {
|
|
15569
|
+
"type": "string",
|
|
15570
|
+
"description": "Namespace-prefixed identifier sent to Chime CreateAttendee. Format: `user:<userId>` for auth humans, `guest:<guestId>` for lobby walk-ins, `boe:<userId>` for AI users. Visible in Chime State Change events so any consumer can identify the principal type without a DB join. Derived server-side from principalType / user.type - do not set on the request."
|
|
15571
|
+
},
|
|
15572
|
+
"joinToken": {
|
|
15573
|
+
"type": "string",
|
|
15574
|
+
"description": "One-time Chime SDK join token. Present only on the createMeetingAttendee response; do NOT cache or re-use - request a fresh attendee if the join fails."
|
|
15575
|
+
},
|
|
15576
|
+
"principalType": {
|
|
15577
|
+
"type": "string",
|
|
15578
|
+
"enum": [
|
|
15579
|
+
"user",
|
|
15580
|
+
"candidate",
|
|
15581
|
+
"talent",
|
|
15582
|
+
"guest"
|
|
15583
|
+
],
|
|
15584
|
+
"description": "Type of the underlying principal who owns this attendance. Mirrors call.fromType / call.toType taxonomy so the same vocabulary spans channels. Required on createMeetingAttendee request."
|
|
15585
|
+
},
|
|
15586
|
+
"principalId": {
|
|
15587
|
+
"type": "string",
|
|
15588
|
+
"description": "Stable id of the principal (e.g. usr-anna, cnd-tomek, gst-xyz). For namespace `boe:` attendees this is the boe user's id - Boe is a user just like a human, the principalType is still 'user'. Required on createMeetingAttendee request unless principalType=guest (then the server allocates a guest id)."
|
|
15589
|
+
},
|
|
15590
|
+
"name": {
|
|
15591
|
+
"type": "string",
|
|
15592
|
+
"description": "Display name shown in the roster. Source: user.name for principalType=user (auth or boe), lobby-typed name for guest, candidate/talent name for those types. Accepted on the request as an override; otherwise server resolves it from the principal."
|
|
15593
|
+
},
|
|
15594
|
+
"role": {
|
|
15595
|
+
"type": "string",
|
|
15596
|
+
"enum": [
|
|
15597
|
+
"host",
|
|
15598
|
+
"attendee",
|
|
15599
|
+
"candidate",
|
|
15600
|
+
"observer",
|
|
15601
|
+
"interviewer",
|
|
15602
|
+
"notetaker",
|
|
15603
|
+
"sales",
|
|
15604
|
+
"other"
|
|
15605
|
+
],
|
|
15606
|
+
"description": "Function this attendee plays in THIS meeting. Distinct from user.type (which says human-vs-bot at the user level). At most one `host` per meeting. AI bot roles (interviewer / notetaker / sales) drive prompt template selection in the bot container."
|
|
15607
|
+
},
|
|
15608
|
+
"status": {
|
|
15609
|
+
"type": "string",
|
|
15610
|
+
"enum": [
|
|
15611
|
+
"joining",
|
|
15612
|
+
"active",
|
|
15613
|
+
"left",
|
|
15614
|
+
"dropped",
|
|
15615
|
+
"ended",
|
|
15616
|
+
"error"
|
|
15617
|
+
],
|
|
15618
|
+
"description": "Lifecycle on the attendee record.\n joining - row created, attendee not yet on Chime grid (typical for bots between dispatch and Chime ack, or for fresh createMeetingAttendee responses pre-join)\n active - present on the Chime grid, audio bridging\n left - left cleanly (clicked leave or natural end)\n dropped - lost connection or network drop (per Chime AttendeeDropped event)\n ended - bot path: server-initiated dismiss (DELETE) or natural completion\n error - bot dispatch / join failed; see errorMessage\nServer-managed - do not set on the request."
|
|
15619
|
+
},
|
|
15620
|
+
"email": {
|
|
15621
|
+
"type": "string",
|
|
15622
|
+
"description": "Optional. Auth humans: from user profile (server-resolved). Guests: from lobby form (accepted on request)."
|
|
15623
|
+
},
|
|
15624
|
+
"phone": {
|
|
15625
|
+
"type": "string",
|
|
15626
|
+
"description": "Optional. Typed in lobby form when present (guest only)."
|
|
15627
|
+
},
|
|
15628
|
+
"voice": {
|
|
15629
|
+
"type": "string",
|
|
15630
|
+
"description": "AI only. Realtime model voice (alloy / echo / fable / onyx / nova / shimmer). Used at dispatch."
|
|
15631
|
+
},
|
|
15632
|
+
"config": {
|
|
15633
|
+
"type": "object",
|
|
15634
|
+
"additionalProperties": true,
|
|
15635
|
+
"description": "AI only. Per-bot runtime config: mode, language, targetLanguage, persona, faceId, context (job-context auto-enrichment seed). Echoed back so FE can confirm what the bot received."
|
|
15636
|
+
},
|
|
15637
|
+
"taskArn": {
|
|
15638
|
+
"type": "string",
|
|
15639
|
+
"description": "AI only. ECS task ARN for the bot (operational). Server-managed."
|
|
15640
|
+
},
|
|
15641
|
+
"errorMessage": {
|
|
15642
|
+
"type": "string",
|
|
15643
|
+
"description": "Populated when status=error."
|
|
15644
|
+
},
|
|
15645
|
+
"joinedAt": {
|
|
15646
|
+
"type": "string",
|
|
15647
|
+
"format": "date-time",
|
|
15648
|
+
"description": "Server-stamped from chime:AttendeeJoined event."
|
|
15649
|
+
},
|
|
15650
|
+
"leftAt": {
|
|
15651
|
+
"type": "string",
|
|
15652
|
+
"format": "date-time",
|
|
15653
|
+
"description": "Server-stamped from chime:AttendeeLeft / Dropped event."
|
|
15654
|
+
},
|
|
15655
|
+
"chimeMeetingData": {
|
|
15656
|
+
"type": "object",
|
|
15657
|
+
"additionalProperties": true,
|
|
15658
|
+
"description": "Raw AWS Chime CreateMeeting `Meeting` object - passed verbatim to chime-sdk-js. Only on the createMeetingAttendee response (so the joining client gets everything it needs in one round-trip); not stored on the row."
|
|
15659
|
+
}
|
|
15660
|
+
}
|
|
15661
|
+
}
|
|
15662
|
+
}
|
|
15663
|
+
}
|
|
15664
|
+
}
|
|
15665
|
+
},
|
|
15666
|
+
"_meta": {
|
|
15667
|
+
"method": "POST",
|
|
15668
|
+
"path": "/v1/guest/meetings/{meetingId}/attendees",
|
|
15669
|
+
"operationId": "createGuestMeetingAttendee"
|
|
15670
|
+
}
|
|
15671
|
+
},
|
|
15672
|
+
{
|
|
15673
|
+
"name": "guest_meeting_attendees_options",
|
|
15674
|
+
"description": "Guest Meeting Attendees Options",
|
|
15675
|
+
"inputSchema": {
|
|
15676
|
+
"type": "object",
|
|
15677
|
+
"properties": {}
|
|
15678
|
+
},
|
|
15679
|
+
"_meta": {
|
|
15680
|
+
"method": "OPTIONS",
|
|
15681
|
+
"path": "/v1/guest/meetings/{meetingId}/attendees",
|
|
15682
|
+
"operationId": "guestMeetingAttendeesOptions"
|
|
15683
|
+
}
|
|
15684
|
+
},
|
|
15517
15685
|
{
|
|
15518
15686
|
"name": "meeting_transcription",
|
|
15519
15687
|
"description": "Manage Meeting Transcription",
|