@smartytalent/mcp-tools 0.1.24 → 0.1.26
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 +260 -41
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -4566,14 +4566,10 @@
|
|
|
4566
4566
|
"attributes": {
|
|
4567
4567
|
"title": "CandidateAttributesSchema",
|
|
4568
4568
|
"type": "object",
|
|
4569
|
-
"required": [
|
|
4570
|
-
"name",
|
|
4571
|
-
"email"
|
|
4572
|
-
],
|
|
4573
4569
|
"properties": {
|
|
4574
4570
|
"name": {
|
|
4575
4571
|
"type": "string",
|
|
4576
|
-
"description": "Full name of the candidate"
|
|
4572
|
+
"description": "Full name of the candidate. Required on create."
|
|
4577
4573
|
},
|
|
4578
4574
|
"email": {
|
|
4579
4575
|
"type": "string",
|
|
@@ -4600,20 +4596,30 @@
|
|
|
4600
4596
|
"description": "Current status of the candidate",
|
|
4601
4597
|
"enum": [
|
|
4602
4598
|
"active",
|
|
4599
|
+
"paused",
|
|
4603
4600
|
"withdrawn",
|
|
4604
4601
|
"rejected",
|
|
4602
|
+
"hired",
|
|
4603
|
+
"archived",
|
|
4605
4604
|
"inactive",
|
|
4606
4605
|
"onHold",
|
|
4607
4606
|
"offerExtended",
|
|
4608
4607
|
"offerDeclined",
|
|
4609
|
-
"futureConsideration"
|
|
4610
|
-
"archived"
|
|
4608
|
+
"futureConsideration"
|
|
4611
4609
|
]
|
|
4612
4610
|
},
|
|
4613
4611
|
"stage": {
|
|
4614
4612
|
"type": "string",
|
|
4615
4613
|
"description": "Current stage in the recruitment pipeline",
|
|
4616
4614
|
"enum": [
|
|
4615
|
+
"sourcing",
|
|
4616
|
+
"screening",
|
|
4617
|
+
"assessment",
|
|
4618
|
+
"interview",
|
|
4619
|
+
"offer",
|
|
4620
|
+
"hired",
|
|
4621
|
+
"onboarding",
|
|
4622
|
+
"evaluation",
|
|
4617
4623
|
"sourced",
|
|
4618
4624
|
"applied",
|
|
4619
4625
|
"initial",
|
|
@@ -4623,7 +4629,6 @@
|
|
|
4623
4629
|
"contacted",
|
|
4624
4630
|
"interviewed",
|
|
4625
4631
|
"offered",
|
|
4626
|
-
"hired",
|
|
4627
4632
|
"onboarded",
|
|
4628
4633
|
"evaluated"
|
|
4629
4634
|
]
|
|
@@ -4638,7 +4643,19 @@
|
|
|
4638
4643
|
},
|
|
4639
4644
|
"source": {
|
|
4640
4645
|
"type": "string",
|
|
4641
|
-
"description": "
|
|
4646
|
+
"description": "Where the candidate originated (e.g., careerPage, jobBoard, linkedin, talentPool)"
|
|
4647
|
+
},
|
|
4648
|
+
"channel": {
|
|
4649
|
+
"type": "string",
|
|
4650
|
+
"description": "How the candidate entered the system",
|
|
4651
|
+
"enum": [
|
|
4652
|
+
"form",
|
|
4653
|
+
"email",
|
|
4654
|
+
"call",
|
|
4655
|
+
"chat",
|
|
4656
|
+
"api",
|
|
4657
|
+
"agent"
|
|
4658
|
+
]
|
|
4642
4659
|
},
|
|
4643
4660
|
"shortCode": {
|
|
4644
4661
|
"type": "string",
|
|
@@ -5085,8 +5102,7 @@
|
|
|
5085
5102
|
"type": "object",
|
|
5086
5103
|
"required": [
|
|
5087
5104
|
"type",
|
|
5088
|
-
"id"
|
|
5089
|
-
"attributes"
|
|
5105
|
+
"id"
|
|
5090
5106
|
],
|
|
5091
5107
|
"properties": {
|
|
5092
5108
|
"type": {
|
|
@@ -5101,14 +5117,10 @@
|
|
|
5101
5117
|
"attributes": {
|
|
5102
5118
|
"title": "CandidateAttributesSchema",
|
|
5103
5119
|
"type": "object",
|
|
5104
|
-
"required": [
|
|
5105
|
-
"name",
|
|
5106
|
-
"email"
|
|
5107
|
-
],
|
|
5108
5120
|
"properties": {
|
|
5109
5121
|
"name": {
|
|
5110
5122
|
"type": "string",
|
|
5111
|
-
"description": "Full name of the candidate"
|
|
5123
|
+
"description": "Full name of the candidate. Required on create."
|
|
5112
5124
|
},
|
|
5113
5125
|
"email": {
|
|
5114
5126
|
"type": "string",
|
|
@@ -5135,20 +5147,30 @@
|
|
|
5135
5147
|
"description": "Current status of the candidate",
|
|
5136
5148
|
"enum": [
|
|
5137
5149
|
"active",
|
|
5150
|
+
"paused",
|
|
5138
5151
|
"withdrawn",
|
|
5139
5152
|
"rejected",
|
|
5153
|
+
"hired",
|
|
5154
|
+
"archived",
|
|
5140
5155
|
"inactive",
|
|
5141
5156
|
"onHold",
|
|
5142
5157
|
"offerExtended",
|
|
5143
5158
|
"offerDeclined",
|
|
5144
|
-
"futureConsideration"
|
|
5145
|
-
"archived"
|
|
5159
|
+
"futureConsideration"
|
|
5146
5160
|
]
|
|
5147
5161
|
},
|
|
5148
5162
|
"stage": {
|
|
5149
5163
|
"type": "string",
|
|
5150
5164
|
"description": "Current stage in the recruitment pipeline",
|
|
5151
5165
|
"enum": [
|
|
5166
|
+
"sourcing",
|
|
5167
|
+
"screening",
|
|
5168
|
+
"assessment",
|
|
5169
|
+
"interview",
|
|
5170
|
+
"offer",
|
|
5171
|
+
"hired",
|
|
5172
|
+
"onboarding",
|
|
5173
|
+
"evaluation",
|
|
5152
5174
|
"sourced",
|
|
5153
5175
|
"applied",
|
|
5154
5176
|
"initial",
|
|
@@ -5158,7 +5180,6 @@
|
|
|
5158
5180
|
"contacted",
|
|
5159
5181
|
"interviewed",
|
|
5160
5182
|
"offered",
|
|
5161
|
-
"hired",
|
|
5162
5183
|
"onboarded",
|
|
5163
5184
|
"evaluated"
|
|
5164
5185
|
]
|
|
@@ -5173,7 +5194,19 @@
|
|
|
5173
5194
|
},
|
|
5174
5195
|
"source": {
|
|
5175
5196
|
"type": "string",
|
|
5176
|
-
"description": "
|
|
5197
|
+
"description": "Where the candidate originated (e.g., careerPage, jobBoard, linkedin, talentPool)"
|
|
5198
|
+
},
|
|
5199
|
+
"channel": {
|
|
5200
|
+
"type": "string",
|
|
5201
|
+
"description": "How the candidate entered the system",
|
|
5202
|
+
"enum": [
|
|
5203
|
+
"form",
|
|
5204
|
+
"email",
|
|
5205
|
+
"call",
|
|
5206
|
+
"chat",
|
|
5207
|
+
"api",
|
|
5208
|
+
"agent"
|
|
5209
|
+
]
|
|
5177
5210
|
},
|
|
5178
5211
|
"shortCode": {
|
|
5179
5212
|
"type": "string",
|
|
@@ -5426,6 +5459,132 @@
|
|
|
5426
5459
|
"additionalProperties": true
|
|
5427
5460
|
}
|
|
5428
5461
|
}
|
|
5462
|
+
},
|
|
5463
|
+
"relationships": {
|
|
5464
|
+
"title": "CandidateRelationshipsSchema",
|
|
5465
|
+
"type": "object",
|
|
5466
|
+
"properties": {
|
|
5467
|
+
"job": {
|
|
5468
|
+
"title": "CandidateRelationshipsJobSchema",
|
|
5469
|
+
"type": "object",
|
|
5470
|
+
"properties": {
|
|
5471
|
+
"data": {
|
|
5472
|
+
"title": "CandidateRelationshipsJobDataSchema",
|
|
5473
|
+
"type": "object",
|
|
5474
|
+
"properties": {
|
|
5475
|
+
"type": {
|
|
5476
|
+
"type": "string"
|
|
5477
|
+
},
|
|
5478
|
+
"id": {
|
|
5479
|
+
"type": "string"
|
|
5480
|
+
}
|
|
5481
|
+
}
|
|
5482
|
+
}
|
|
5483
|
+
}
|
|
5484
|
+
},
|
|
5485
|
+
"talent": {
|
|
5486
|
+
"title": "CandidateRelationshipsTalentSchema",
|
|
5487
|
+
"type": "object",
|
|
5488
|
+
"properties": {
|
|
5489
|
+
"data": {
|
|
5490
|
+
"title": "CandidateRelationshipsTalentDataSchema",
|
|
5491
|
+
"type": "object",
|
|
5492
|
+
"properties": {
|
|
5493
|
+
"type": {
|
|
5494
|
+
"type": "string"
|
|
5495
|
+
},
|
|
5496
|
+
"id": {
|
|
5497
|
+
"type": "string"
|
|
5498
|
+
}
|
|
5499
|
+
}
|
|
5500
|
+
}
|
|
5501
|
+
}
|
|
5502
|
+
},
|
|
5503
|
+
"files": {
|
|
5504
|
+
"title": "CandidateRelationshipsFilesSchema",
|
|
5505
|
+
"type": "object",
|
|
5506
|
+
"properties": {
|
|
5507
|
+
"data": {
|
|
5508
|
+
"type": "array",
|
|
5509
|
+
"items": {
|
|
5510
|
+
"title": "CandidateRelationshipsFilesDataSchema",
|
|
5511
|
+
"type": "object",
|
|
5512
|
+
"properties": {
|
|
5513
|
+
"type": {
|
|
5514
|
+
"type": "string"
|
|
5515
|
+
},
|
|
5516
|
+
"id": {
|
|
5517
|
+
"type": "string"
|
|
5518
|
+
}
|
|
5519
|
+
}
|
|
5520
|
+
}
|
|
5521
|
+
}
|
|
5522
|
+
}
|
|
5523
|
+
},
|
|
5524
|
+
"forms": {
|
|
5525
|
+
"title": "CandidateRelationshipsFormsSchema",
|
|
5526
|
+
"type": "object",
|
|
5527
|
+
"properties": {
|
|
5528
|
+
"data": {
|
|
5529
|
+
"type": "array",
|
|
5530
|
+
"items": {
|
|
5531
|
+
"title": "CandidateRelationshipsFormsDataSchema",
|
|
5532
|
+
"type": "object",
|
|
5533
|
+
"properties": {
|
|
5534
|
+
"type": {
|
|
5535
|
+
"type": "string"
|
|
5536
|
+
},
|
|
5537
|
+
"id": {
|
|
5538
|
+
"type": "string"
|
|
5539
|
+
}
|
|
5540
|
+
}
|
|
5541
|
+
}
|
|
5542
|
+
}
|
|
5543
|
+
}
|
|
5544
|
+
},
|
|
5545
|
+
"translations": {
|
|
5546
|
+
"title": "CandidateRelationshipsTranslationsSchema",
|
|
5547
|
+
"type": "object",
|
|
5548
|
+
"properties": {
|
|
5549
|
+
"data": {
|
|
5550
|
+
"type": "array",
|
|
5551
|
+
"items": {
|
|
5552
|
+
"title": "CandidateRelationshipsTranslationsDataSchema",
|
|
5553
|
+
"type": "object",
|
|
5554
|
+
"properties": {
|
|
5555
|
+
"type": {
|
|
5556
|
+
"type": "string"
|
|
5557
|
+
},
|
|
5558
|
+
"id": {
|
|
5559
|
+
"type": "string"
|
|
5560
|
+
}
|
|
5561
|
+
}
|
|
5562
|
+
}
|
|
5563
|
+
}
|
|
5564
|
+
}
|
|
5565
|
+
},
|
|
5566
|
+
"operations": {
|
|
5567
|
+
"title": "CandidateRelationshipsOperationsSchema",
|
|
5568
|
+
"type": "object",
|
|
5569
|
+
"properties": {
|
|
5570
|
+
"data": {
|
|
5571
|
+
"type": "array",
|
|
5572
|
+
"items": {
|
|
5573
|
+
"title": "CandidateRelationshipsOperationsDataSchema",
|
|
5574
|
+
"type": "object",
|
|
5575
|
+
"properties": {
|
|
5576
|
+
"type": {
|
|
5577
|
+
"type": "string"
|
|
5578
|
+
},
|
|
5579
|
+
"id": {
|
|
5580
|
+
"type": "string"
|
|
5581
|
+
}
|
|
5582
|
+
}
|
|
5583
|
+
}
|
|
5584
|
+
}
|
|
5585
|
+
}
|
|
5586
|
+
}
|
|
5587
|
+
}
|
|
5429
5588
|
}
|
|
5430
5589
|
}
|
|
5431
5590
|
}
|
|
@@ -7683,28 +7842,33 @@
|
|
|
7683
7842
|
"attributes": {
|
|
7684
7843
|
"title": "SubmissionAttributesSchema",
|
|
7685
7844
|
"type": "object",
|
|
7686
|
-
"required": [
|
|
7687
|
-
"name",
|
|
7688
|
-
"email"
|
|
7689
|
-
],
|
|
7690
7845
|
"properties": {
|
|
7691
7846
|
"name": {
|
|
7692
|
-
"type": "string"
|
|
7847
|
+
"type": "string",
|
|
7848
|
+
"description": "Required on create"
|
|
7693
7849
|
},
|
|
7694
7850
|
"email": {
|
|
7695
|
-
"type": "string"
|
|
7851
|
+
"type": "string",
|
|
7852
|
+
"description": "Required on create"
|
|
7696
7853
|
},
|
|
7697
7854
|
"phone": {
|
|
7698
7855
|
"type": "string"
|
|
7699
7856
|
},
|
|
7700
|
-
"
|
|
7857
|
+
"channel": {
|
|
7701
7858
|
"type": "string",
|
|
7702
7859
|
"enum": [
|
|
7703
7860
|
"form",
|
|
7704
7861
|
"email",
|
|
7705
7862
|
"call",
|
|
7706
|
-
"
|
|
7707
|
-
|
|
7863
|
+
"chat",
|
|
7864
|
+
"api",
|
|
7865
|
+
"agent"
|
|
7866
|
+
],
|
|
7867
|
+
"description": "How the submission entered the system"
|
|
7868
|
+
},
|
|
7869
|
+
"source": {
|
|
7870
|
+
"type": "string",
|
|
7871
|
+
"description": "Where the candidate originated (e.g., careerPage, jobBoard, linkedin, talentPool)"
|
|
7708
7872
|
},
|
|
7709
7873
|
"type": {
|
|
7710
7874
|
"type": "string",
|
|
@@ -8045,6 +8209,10 @@
|
|
|
8045
8209
|
}
|
|
8046
8210
|
}
|
|
8047
8211
|
},
|
|
8212
|
+
"source": {
|
|
8213
|
+
"type": "string",
|
|
8214
|
+
"description": "Where the candidate found the job (e.g., careerPage, jobBoard, linkedin)"
|
|
8215
|
+
},
|
|
8048
8216
|
"consentCurrent": {
|
|
8049
8217
|
"type": "boolean"
|
|
8050
8218
|
},
|
|
@@ -8160,8 +8328,7 @@
|
|
|
8160
8328
|
"type": "object",
|
|
8161
8329
|
"required": [
|
|
8162
8330
|
"type",
|
|
8163
|
-
"id"
|
|
8164
|
-
"attributes"
|
|
8331
|
+
"id"
|
|
8165
8332
|
],
|
|
8166
8333
|
"properties": {
|
|
8167
8334
|
"type": {
|
|
@@ -8176,28 +8343,33 @@
|
|
|
8176
8343
|
"attributes": {
|
|
8177
8344
|
"title": "SubmissionAttributesSchema",
|
|
8178
8345
|
"type": "object",
|
|
8179
|
-
"required": [
|
|
8180
|
-
"name",
|
|
8181
|
-
"email"
|
|
8182
|
-
],
|
|
8183
8346
|
"properties": {
|
|
8184
8347
|
"name": {
|
|
8185
|
-
"type": "string"
|
|
8348
|
+
"type": "string",
|
|
8349
|
+
"description": "Required on create"
|
|
8186
8350
|
},
|
|
8187
8351
|
"email": {
|
|
8188
|
-
"type": "string"
|
|
8352
|
+
"type": "string",
|
|
8353
|
+
"description": "Required on create"
|
|
8189
8354
|
},
|
|
8190
8355
|
"phone": {
|
|
8191
8356
|
"type": "string"
|
|
8192
8357
|
},
|
|
8193
|
-
"
|
|
8358
|
+
"channel": {
|
|
8194
8359
|
"type": "string",
|
|
8195
8360
|
"enum": [
|
|
8196
8361
|
"form",
|
|
8197
8362
|
"email",
|
|
8198
8363
|
"call",
|
|
8199
|
-
"
|
|
8200
|
-
|
|
8364
|
+
"chat",
|
|
8365
|
+
"api",
|
|
8366
|
+
"agent"
|
|
8367
|
+
],
|
|
8368
|
+
"description": "How the submission entered the system"
|
|
8369
|
+
},
|
|
8370
|
+
"source": {
|
|
8371
|
+
"type": "string",
|
|
8372
|
+
"description": "Where the candidate originated (e.g., careerPage, jobBoard, linkedin, talentPool)"
|
|
8201
8373
|
},
|
|
8202
8374
|
"type": {
|
|
8203
8375
|
"type": "string",
|
|
@@ -13287,8 +13459,55 @@
|
|
|
13287
13459
|
"name": "update_run",
|
|
13288
13460
|
"description": "Update Run",
|
|
13289
13461
|
"inputSchema": {
|
|
13462
|
+
"title": "UpdateRunRequestBody",
|
|
13290
13463
|
"type": "object",
|
|
13291
|
-
"
|
|
13464
|
+
"required": [
|
|
13465
|
+
"data"
|
|
13466
|
+
],
|
|
13467
|
+
"properties": {
|
|
13468
|
+
"data": {
|
|
13469
|
+
"title": "UpdateRunRequestBodyData",
|
|
13470
|
+
"type": "object",
|
|
13471
|
+
"required": [
|
|
13472
|
+
"type",
|
|
13473
|
+
"id",
|
|
13474
|
+
"attributes"
|
|
13475
|
+
],
|
|
13476
|
+
"properties": {
|
|
13477
|
+
"type": {
|
|
13478
|
+
"type": "string",
|
|
13479
|
+
"enum": [
|
|
13480
|
+
"runs"
|
|
13481
|
+
]
|
|
13482
|
+
},
|
|
13483
|
+
"id": {
|
|
13484
|
+
"type": "string"
|
|
13485
|
+
},
|
|
13486
|
+
"attributes": {
|
|
13487
|
+
"title": "UpdateRunAttributesSchema",
|
|
13488
|
+
"type": "object",
|
|
13489
|
+
"required": [
|
|
13490
|
+
"status"
|
|
13491
|
+
],
|
|
13492
|
+
"properties": {
|
|
13493
|
+
"status": {
|
|
13494
|
+
"type": "string",
|
|
13495
|
+
"enum": [
|
|
13496
|
+
"running",
|
|
13497
|
+
"aborted"
|
|
13498
|
+
],
|
|
13499
|
+
"description": "Target status. 'running' redrives a failed/paused/completed run; 'aborted' cancels a pending/running run."
|
|
13500
|
+
},
|
|
13501
|
+
"fromStep": {
|
|
13502
|
+
"type": "integer",
|
|
13503
|
+
"minimum": 0,
|
|
13504
|
+
"description": "Only valid when status=running. Zero-based index of the step to redrive from. All step results from this index onwards are discarded. If omitted, resumes from the last failed/paused step (legacy behavior)."
|
|
13505
|
+
}
|
|
13506
|
+
}
|
|
13507
|
+
}
|
|
13508
|
+
}
|
|
13509
|
+
}
|
|
13510
|
+
}
|
|
13292
13511
|
},
|
|
13293
13512
|
"_meta": {
|
|
13294
13513
|
"method": "PATCH",
|