@smartytalent/mcp-tools 0.1.33-dev.52 → 0.1.33-dev.54

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.
Files changed (2) hide show
  1. package/dist/tools.json +503 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -14500,6 +14500,189 @@
14500
14500
  "type": "object"
14501
14501
  }
14502
14502
  },
14503
+ "recordingStatus": {
14504
+ "type": "string",
14505
+ "enum": [
14506
+ "recording",
14507
+ "success",
14508
+ "failed"
14509
+ ],
14510
+ "description": "Chime SDK Media Capture Pipeline lifecycle. Set by the Boe bot when it starts/stops the capture."
14511
+ },
14512
+ "mediaCapturePipelineArn": {
14513
+ "type": "string",
14514
+ "description": "Chime SDK Media Capture Pipeline ARN. Internal; FE shouldn't need this directly."
14515
+ },
14516
+ "recordingS3Prefix": {
14517
+ "type": "string",
14518
+ "description": "S3 key prefix where capture pipeline wrote composited-video chunks. Inside the meeting service bucket."
14519
+ },
14520
+ "recordingStartedAt": {
14521
+ "type": "string",
14522
+ "format": "date-time"
14523
+ },
14524
+ "recordingEndedAt": {
14525
+ "type": "string",
14526
+ "format": "date-time"
14527
+ },
14528
+ "recordingError": {
14529
+ "type": "string",
14530
+ "description": "Set when recordingStatus=failed. Includes the AWS error name + message."
14531
+ },
14532
+ "concatenationStatus": {
14533
+ "type": "string",
14534
+ "enum": [
14535
+ "running",
14536
+ "success",
14537
+ "failed"
14538
+ ],
14539
+ "description": "Chime SDK Media Concatenation Pipeline lifecycle. Concat merges the ~5s capture chunks into one composited-video.mp4."
14540
+ },
14541
+ "concatenationPipelineArn": {
14542
+ "type": "string",
14543
+ "description": "Concat pipeline ARN. Last path component is the {concatId} used as the merged MP4 filename."
14544
+ },
14545
+ "concatenationS3Prefix": {
14546
+ "type": "string",
14547
+ "description": "S3 key prefix where the concat output lands. Usually {shardId}/{meetingId}/merged/."
14548
+ },
14549
+ "concatenationStartedAt": {
14550
+ "type": "string",
14551
+ "format": "date-time"
14552
+ },
14553
+ "concatenationEndedAt": {
14554
+ "type": "string",
14555
+ "format": "date-time"
14556
+ },
14557
+ "concatenationError": {
14558
+ "type": "string"
14559
+ },
14560
+ "aiProcessingStatus": {
14561
+ "type": "string",
14562
+ "enum": [
14563
+ "running",
14564
+ "success",
14565
+ "failed"
14566
+ ],
14567
+ "description": "Phase 3 Step Function (ffmpeg + gpt-audio + translate + finalize) lifecycle. Set by the finalize Lambda."
14568
+ },
14569
+ "aiProcessingStartedAt": {
14570
+ "type": "string",
14571
+ "format": "date-time"
14572
+ },
14573
+ "aiProcessingEndedAt": {
14574
+ "type": "string",
14575
+ "format": "date-time"
14576
+ },
14577
+ "aiProcessingError": {
14578
+ "type": "string"
14579
+ },
14580
+ "transcriptSegments": {
14581
+ "type": "array",
14582
+ "description": "Time-coded transcript turns. Same shape as call transcriptSegments + adds attendeeId so FE can colour-code participants.",
14583
+ "items": {
14584
+ "title": "MeetingTranscriptSegmentSchema",
14585
+ "type": "object",
14586
+ "description": "Single speaker turn in the meeting transcript. Mirrors CallTranscriptSegmentSchema + attendeeId.",
14587
+ "properties": {
14588
+ "startMs": {
14589
+ "type": "integer",
14590
+ "description": "Offset from start of recording, milliseconds."
14591
+ },
14592
+ "endMs": {
14593
+ "type": "integer"
14594
+ },
14595
+ "speakerType": {
14596
+ "type": "string",
14597
+ "enum": [
14598
+ "ai",
14599
+ "human"
14600
+ ]
14601
+ },
14602
+ "speakerName": {
14603
+ "type": "string",
14604
+ "description": "Display name resolved from the meeting row (aiAttendees + participants), with a Speaker {id-suffix} fallback for unrecognised attendees."
14605
+ },
14606
+ "attendeeId": {
14607
+ "type": "string",
14608
+ "description": "chimeAttendeeId so FE can map back to the attendee record (avatar / colour / etc)."
14609
+ },
14610
+ "text": {
14611
+ "type": "string",
14612
+ "description": "Verbatim spoken text in the source language. NOT translated; use transcript[locale] for translated joined-text views."
14613
+ }
14614
+ }
14615
+ }
14616
+ },
14617
+ "speakerStats": {
14618
+ "type": "array",
14619
+ "description": "Per-speaker talk percentage in basis points (10000 = 100%).",
14620
+ "items": {
14621
+ "title": "MeetingSpeakerStatSchema",
14622
+ "type": "object",
14623
+ "properties": {
14624
+ "attendeeId": {
14625
+ "type": "string"
14626
+ },
14627
+ "speakerType": {
14628
+ "type": "string",
14629
+ "enum": [
14630
+ "ai",
14631
+ "human"
14632
+ ]
14633
+ },
14634
+ "speakerName": {
14635
+ "type": "string"
14636
+ },
14637
+ "talkPercentageBp": {
14638
+ "type": "integer",
14639
+ "description": "Talk percentage in basis points (10000 = 100%)."
14640
+ }
14641
+ }
14642
+ }
14643
+ },
14644
+ "languageCode": {
14645
+ "type": "string",
14646
+ "description": "BCP-47 primary language of the meeting, auto-detected by gpt-audio."
14647
+ },
14648
+ "summary": {
14649
+ "type": "string",
14650
+ "description": "AI-generated 2-4 paragraph summary in the source languageCode. Use summaryByLocale for translated copies."
14651
+ },
14652
+ "summaryByLocale": {
14653
+ "type": "object",
14654
+ "description": "Translated summary per tenant locale. Shape: { 'pl-PL': '...', 'en-US': '...' }.",
14655
+ "additionalProperties": {
14656
+ "type": "string"
14657
+ }
14658
+ },
14659
+ "summaryGeneratedAt": {
14660
+ "type": "string",
14661
+ "format": "date-time"
14662
+ },
14663
+ "keyNotes": {
14664
+ "type": "array",
14665
+ "description": "3-5 prose bullets distilling the meeting's substance, source language. NOT translated.",
14666
+ "items": {
14667
+ "type": "string"
14668
+ }
14669
+ },
14670
+ "topicsDiscussed": {
14671
+ "type": "array",
14672
+ "description": "Stable facet keys from the meeting topic dictionary (FE renders human labels via shared dict).",
14673
+ "items": {
14674
+ "type": "string"
14675
+ }
14676
+ },
14677
+ "sentiment": {
14678
+ "type": "string",
14679
+ "enum": [
14680
+ "positive",
14681
+ "neutral",
14682
+ "negative",
14683
+ "mixed"
14684
+ ]
14685
+ },
14503
14686
  "status": {
14504
14687
  "type": "string",
14505
14688
  "enum": [
@@ -14811,6 +14994,189 @@
14811
14994
  "type": "object"
14812
14995
  }
14813
14996
  },
14997
+ "recordingStatus": {
14998
+ "type": "string",
14999
+ "enum": [
15000
+ "recording",
15001
+ "success",
15002
+ "failed"
15003
+ ],
15004
+ "description": "Chime SDK Media Capture Pipeline lifecycle. Set by the Boe bot when it starts/stops the capture."
15005
+ },
15006
+ "mediaCapturePipelineArn": {
15007
+ "type": "string",
15008
+ "description": "Chime SDK Media Capture Pipeline ARN. Internal; FE shouldn't need this directly."
15009
+ },
15010
+ "recordingS3Prefix": {
15011
+ "type": "string",
15012
+ "description": "S3 key prefix where capture pipeline wrote composited-video chunks. Inside the meeting service bucket."
15013
+ },
15014
+ "recordingStartedAt": {
15015
+ "type": "string",
15016
+ "format": "date-time"
15017
+ },
15018
+ "recordingEndedAt": {
15019
+ "type": "string",
15020
+ "format": "date-time"
15021
+ },
15022
+ "recordingError": {
15023
+ "type": "string",
15024
+ "description": "Set when recordingStatus=failed. Includes the AWS error name + message."
15025
+ },
15026
+ "concatenationStatus": {
15027
+ "type": "string",
15028
+ "enum": [
15029
+ "running",
15030
+ "success",
15031
+ "failed"
15032
+ ],
15033
+ "description": "Chime SDK Media Concatenation Pipeline lifecycle. Concat merges the ~5s capture chunks into one composited-video.mp4."
15034
+ },
15035
+ "concatenationPipelineArn": {
15036
+ "type": "string",
15037
+ "description": "Concat pipeline ARN. Last path component is the {concatId} used as the merged MP4 filename."
15038
+ },
15039
+ "concatenationS3Prefix": {
15040
+ "type": "string",
15041
+ "description": "S3 key prefix where the concat output lands. Usually {shardId}/{meetingId}/merged/."
15042
+ },
15043
+ "concatenationStartedAt": {
15044
+ "type": "string",
15045
+ "format": "date-time"
15046
+ },
15047
+ "concatenationEndedAt": {
15048
+ "type": "string",
15049
+ "format": "date-time"
15050
+ },
15051
+ "concatenationError": {
15052
+ "type": "string"
15053
+ },
15054
+ "aiProcessingStatus": {
15055
+ "type": "string",
15056
+ "enum": [
15057
+ "running",
15058
+ "success",
15059
+ "failed"
15060
+ ],
15061
+ "description": "Phase 3 Step Function (ffmpeg + gpt-audio + translate + finalize) lifecycle. Set by the finalize Lambda."
15062
+ },
15063
+ "aiProcessingStartedAt": {
15064
+ "type": "string",
15065
+ "format": "date-time"
15066
+ },
15067
+ "aiProcessingEndedAt": {
15068
+ "type": "string",
15069
+ "format": "date-time"
15070
+ },
15071
+ "aiProcessingError": {
15072
+ "type": "string"
15073
+ },
15074
+ "transcriptSegments": {
15075
+ "type": "array",
15076
+ "description": "Time-coded transcript turns. Same shape as call transcriptSegments + adds attendeeId so FE can colour-code participants.",
15077
+ "items": {
15078
+ "title": "MeetingTranscriptSegmentSchema",
15079
+ "type": "object",
15080
+ "description": "Single speaker turn in the meeting transcript. Mirrors CallTranscriptSegmentSchema + attendeeId.",
15081
+ "properties": {
15082
+ "startMs": {
15083
+ "type": "integer",
15084
+ "description": "Offset from start of recording, milliseconds."
15085
+ },
15086
+ "endMs": {
15087
+ "type": "integer"
15088
+ },
15089
+ "speakerType": {
15090
+ "type": "string",
15091
+ "enum": [
15092
+ "ai",
15093
+ "human"
15094
+ ]
15095
+ },
15096
+ "speakerName": {
15097
+ "type": "string",
15098
+ "description": "Display name resolved from the meeting row (aiAttendees + participants), with a Speaker {id-suffix} fallback for unrecognised attendees."
15099
+ },
15100
+ "attendeeId": {
15101
+ "type": "string",
15102
+ "description": "chimeAttendeeId so FE can map back to the attendee record (avatar / colour / etc)."
15103
+ },
15104
+ "text": {
15105
+ "type": "string",
15106
+ "description": "Verbatim spoken text in the source language. NOT translated; use transcript[locale] for translated joined-text views."
15107
+ }
15108
+ }
15109
+ }
15110
+ },
15111
+ "speakerStats": {
15112
+ "type": "array",
15113
+ "description": "Per-speaker talk percentage in basis points (10000 = 100%).",
15114
+ "items": {
15115
+ "title": "MeetingSpeakerStatSchema",
15116
+ "type": "object",
15117
+ "properties": {
15118
+ "attendeeId": {
15119
+ "type": "string"
15120
+ },
15121
+ "speakerType": {
15122
+ "type": "string",
15123
+ "enum": [
15124
+ "ai",
15125
+ "human"
15126
+ ]
15127
+ },
15128
+ "speakerName": {
15129
+ "type": "string"
15130
+ },
15131
+ "talkPercentageBp": {
15132
+ "type": "integer",
15133
+ "description": "Talk percentage in basis points (10000 = 100%)."
15134
+ }
15135
+ }
15136
+ }
15137
+ },
15138
+ "languageCode": {
15139
+ "type": "string",
15140
+ "description": "BCP-47 primary language of the meeting, auto-detected by gpt-audio."
15141
+ },
15142
+ "summary": {
15143
+ "type": "string",
15144
+ "description": "AI-generated 2-4 paragraph summary in the source languageCode. Use summaryByLocale for translated copies."
15145
+ },
15146
+ "summaryByLocale": {
15147
+ "type": "object",
15148
+ "description": "Translated summary per tenant locale. Shape: { 'pl-PL': '...', 'en-US': '...' }.",
15149
+ "additionalProperties": {
15150
+ "type": "string"
15151
+ }
15152
+ },
15153
+ "summaryGeneratedAt": {
15154
+ "type": "string",
15155
+ "format": "date-time"
15156
+ },
15157
+ "keyNotes": {
15158
+ "type": "array",
15159
+ "description": "3-5 prose bullets distilling the meeting's substance, source language. NOT translated.",
15160
+ "items": {
15161
+ "type": "string"
15162
+ }
15163
+ },
15164
+ "topicsDiscussed": {
15165
+ "type": "array",
15166
+ "description": "Stable facet keys from the meeting topic dictionary (FE renders human labels via shared dict).",
15167
+ "items": {
15168
+ "type": "string"
15169
+ }
15170
+ },
15171
+ "sentiment": {
15172
+ "type": "string",
15173
+ "enum": [
15174
+ "positive",
15175
+ "neutral",
15176
+ "negative",
15177
+ "mixed"
15178
+ ]
15179
+ },
14814
15180
  "status": {
14815
15181
  "type": "string",
14816
15182
  "enum": [
@@ -15098,6 +15464,143 @@
15098
15464
  "operationId": "meetingAiSessionOptions"
15099
15465
  }
15100
15466
  },
15467
+ {
15468
+ "name": "create_meeting_ai_attendee",
15469
+ "description": "Create Meeting AI Attendee",
15470
+ "inputSchema": {
15471
+ "title": "CreateMeetingAiAttendeeRequestBody",
15472
+ "type": "object",
15473
+ "required": [
15474
+ "data"
15475
+ ],
15476
+ "properties": {
15477
+ "data": {
15478
+ "title": "CreateMeetingAiAttendeeRequestBodyData",
15479
+ "type": "object",
15480
+ "required": [
15481
+ "type",
15482
+ "attributes"
15483
+ ],
15484
+ "properties": {
15485
+ "type": {
15486
+ "type": "string",
15487
+ "enum": [
15488
+ "ai-attendees"
15489
+ ]
15490
+ },
15491
+ "attributes": {
15492
+ "title": "MeetingAiAttendeeSettingsSchema",
15493
+ "type": "object",
15494
+ "properties": {
15495
+ "mode": {
15496
+ "type": "string",
15497
+ "enum": [
15498
+ "assistant",
15499
+ "translator"
15500
+ ],
15501
+ "default": "assistant"
15502
+ },
15503
+ "displayName": {
15504
+ "type": "string",
15505
+ "default": "Boe"
15506
+ },
15507
+ "voice": {
15508
+ "type": "string",
15509
+ "default": "alloy"
15510
+ },
15511
+ "language": {
15512
+ "type": "string",
15513
+ "description": "Reply language for assistant mode (e.g. English)"
15514
+ },
15515
+ "sourceLanguage": {
15516
+ "type": "string",
15517
+ "description": "Translator mode: source language (e.g. Polish)"
15518
+ },
15519
+ "targetLanguage": {
15520
+ "type": "string",
15521
+ "description": "Translator mode: target language (e.g. English)"
15522
+ },
15523
+ "persona": {
15524
+ "type": "string",
15525
+ "description": "Optional persona text appended to the base system prompt"
15526
+ }
15527
+ }
15528
+ }
15529
+ }
15530
+ }
15531
+ }
15532
+ },
15533
+ "_meta": {
15534
+ "method": "POST",
15535
+ "path": "/v1/meetings/{meetingId}/ai-attendees",
15536
+ "operationId": "createMeetingAiAttendee"
15537
+ }
15538
+ },
15539
+ {
15540
+ "name": "list_meeting_ai_attendees",
15541
+ "description": "List Meeting AI Attendees",
15542
+ "inputSchema": {
15543
+ "type": "object",
15544
+ "properties": {}
15545
+ },
15546
+ "_meta": {
15547
+ "method": "GET",
15548
+ "path": "/v1/meetings/{meetingId}/ai-attendees",
15549
+ "operationId": "listMeetingAiAttendees"
15550
+ }
15551
+ },
15552
+ {
15553
+ "name": "meeting_ai_attendees_options",
15554
+ "description": "Meeting AI Attendees Options",
15555
+ "inputSchema": {
15556
+ "type": "object",
15557
+ "properties": {}
15558
+ },
15559
+ "_meta": {
15560
+ "method": "OPTIONS",
15561
+ "path": "/v1/meetings/{meetingId}/ai-attendees",
15562
+ "operationId": "meetingAiAttendeesOptions"
15563
+ }
15564
+ },
15565
+ {
15566
+ "name": "show_meeting_ai_attendee",
15567
+ "description": "Show Meeting AI Attendee",
15568
+ "inputSchema": {
15569
+ "type": "object",
15570
+ "properties": {}
15571
+ },
15572
+ "_meta": {
15573
+ "method": "GET",
15574
+ "path": "/v1/meetings/{meetingId}/ai-attendees/{aiAttendeeId}",
15575
+ "operationId": "showMeetingAiAttendee"
15576
+ }
15577
+ },
15578
+ {
15579
+ "name": "delete_meeting_ai_attendee",
15580
+ "description": "Dismiss Meeting AI Attendee",
15581
+ "inputSchema": {
15582
+ "type": "object",
15583
+ "properties": {}
15584
+ },
15585
+ "_meta": {
15586
+ "method": "DELETE",
15587
+ "path": "/v1/meetings/{meetingId}/ai-attendees/{aiAttendeeId}",
15588
+ "operationId": "deleteMeetingAiAttendee"
15589
+ }
15590
+ },
15591
+ {
15592
+ "name": "meeting_ai_attendee_options",
15593
+ "description": "Meeting AI Attendee Options",
15594
+ "inputSchema": {
15595
+ "type": "object",
15596
+ "properties": {}
15597
+ },
15598
+ "_meta": {
15599
+ "method": "OPTIONS",
15600
+ "path": "/v1/meetings/{meetingId}/ai-attendees/{aiAttendeeId}",
15601
+ "operationId": "meetingAiAttendeeOptions"
15602
+ }
15603
+ },
15101
15604
  {
15102
15605
  "name": "show_meeting_lobby",
15103
15606
  "description": "Show Meeting Lobby",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.52",
3
+ "version": "0.1.33-dev.54",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",