@smartytalent/mcp-tools 0.1.20 → 0.1.22
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 +531 -1
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -7706,6 +7706,14 @@
|
|
|
7706
7706
|
"api"
|
|
7707
7707
|
]
|
|
7708
7708
|
},
|
|
7709
|
+
"type": {
|
|
7710
|
+
"type": "string",
|
|
7711
|
+
"enum": [
|
|
7712
|
+
"candidate",
|
|
7713
|
+
"talent"
|
|
7714
|
+
],
|
|
7715
|
+
"description": "Submission type — determines which workflow to trigger"
|
|
7716
|
+
},
|
|
7709
7717
|
"status": {
|
|
7710
7718
|
"type": "string",
|
|
7711
7719
|
"enum": [
|
|
@@ -8176,6 +8184,14 @@
|
|
|
8176
8184
|
"api"
|
|
8177
8185
|
]
|
|
8178
8186
|
},
|
|
8187
|
+
"type": {
|
|
8188
|
+
"type": "string",
|
|
8189
|
+
"enum": [
|
|
8190
|
+
"candidate",
|
|
8191
|
+
"talent"
|
|
8192
|
+
],
|
|
8193
|
+
"description": "Submission type — determines which workflow to trigger"
|
|
8194
|
+
},
|
|
8179
8195
|
"status": {
|
|
8180
8196
|
"type": "string",
|
|
8181
8197
|
"enum": [
|
|
@@ -8400,6 +8416,519 @@
|
|
|
8400
8416
|
"operationId": "submissionOptions"
|
|
8401
8417
|
}
|
|
8402
8418
|
},
|
|
8419
|
+
{
|
|
8420
|
+
"name": "create_brief",
|
|
8421
|
+
"description": "Create Brief",
|
|
8422
|
+
"inputSchema": {
|
|
8423
|
+
"title": "CreateBriefRequestBody",
|
|
8424
|
+
"type": "object",
|
|
8425
|
+
"required": [
|
|
8426
|
+
"data"
|
|
8427
|
+
],
|
|
8428
|
+
"properties": {
|
|
8429
|
+
"data": {
|
|
8430
|
+
"title": "CreateBriefRequestBodyData",
|
|
8431
|
+
"type": "object",
|
|
8432
|
+
"required": [
|
|
8433
|
+
"type",
|
|
8434
|
+
"attributes"
|
|
8435
|
+
],
|
|
8436
|
+
"properties": {
|
|
8437
|
+
"type": {
|
|
8438
|
+
"type": "string",
|
|
8439
|
+
"enum": [
|
|
8440
|
+
"briefs"
|
|
8441
|
+
]
|
|
8442
|
+
},
|
|
8443
|
+
"attributes": {
|
|
8444
|
+
"title": "BriefAttributesSchema",
|
|
8445
|
+
"type": "object",
|
|
8446
|
+
"required": [
|
|
8447
|
+
"title"
|
|
8448
|
+
],
|
|
8449
|
+
"properties": {
|
|
8450
|
+
"title": {
|
|
8451
|
+
"type": "string"
|
|
8452
|
+
},
|
|
8453
|
+
"description": {
|
|
8454
|
+
"type": "string"
|
|
8455
|
+
},
|
|
8456
|
+
"source": {
|
|
8457
|
+
"type": "string",
|
|
8458
|
+
"enum": [
|
|
8459
|
+
"form",
|
|
8460
|
+
"email",
|
|
8461
|
+
"call",
|
|
8462
|
+
"sms",
|
|
8463
|
+
"ats",
|
|
8464
|
+
"api"
|
|
8465
|
+
]
|
|
8466
|
+
},
|
|
8467
|
+
"status": {
|
|
8468
|
+
"type": "string",
|
|
8469
|
+
"enum": [
|
|
8470
|
+
"received",
|
|
8471
|
+
"processing",
|
|
8472
|
+
"processed",
|
|
8473
|
+
"failed"
|
|
8474
|
+
]
|
|
8475
|
+
},
|
|
8476
|
+
"language": {
|
|
8477
|
+
"type": "string"
|
|
8478
|
+
},
|
|
8479
|
+
"fields": {
|
|
8480
|
+
"type": "object",
|
|
8481
|
+
"description": "Custom form field answers keyed by field identifier"
|
|
8482
|
+
},
|
|
8483
|
+
"files": {
|
|
8484
|
+
"type": "array",
|
|
8485
|
+
"items": {
|
|
8486
|
+
"type": "object",
|
|
8487
|
+
"properties": {
|
|
8488
|
+
"key": {
|
|
8489
|
+
"type": "string"
|
|
8490
|
+
},
|
|
8491
|
+
"bucket": {
|
|
8492
|
+
"type": "string"
|
|
8493
|
+
},
|
|
8494
|
+
"name": {
|
|
8495
|
+
"type": "string"
|
|
8496
|
+
},
|
|
8497
|
+
"contentType": {
|
|
8498
|
+
"type": "string"
|
|
8499
|
+
}
|
|
8500
|
+
}
|
|
8501
|
+
}
|
|
8502
|
+
},
|
|
8503
|
+
"timestamps": {
|
|
8504
|
+
"title": "ResourceTimestampsSchema",
|
|
8505
|
+
"type": "object",
|
|
8506
|
+
"properties": {
|
|
8507
|
+
"created": {
|
|
8508
|
+
"type": "string",
|
|
8509
|
+
"format": "date-time"
|
|
8510
|
+
},
|
|
8511
|
+
"modified": {
|
|
8512
|
+
"type": "string",
|
|
8513
|
+
"format": "date-time"
|
|
8514
|
+
}
|
|
8515
|
+
}
|
|
8516
|
+
}
|
|
8517
|
+
}
|
|
8518
|
+
},
|
|
8519
|
+
"relationships": {
|
|
8520
|
+
"title": "BriefRelationshipsSchema",
|
|
8521
|
+
"type": "object",
|
|
8522
|
+
"properties": {
|
|
8523
|
+
"forms": {
|
|
8524
|
+
"title": "BriefRelationshipsFormsSchema",
|
|
8525
|
+
"type": "object",
|
|
8526
|
+
"properties": {
|
|
8527
|
+
"data": {
|
|
8528
|
+
"type": "array",
|
|
8529
|
+
"items": {
|
|
8530
|
+
"type": "object",
|
|
8531
|
+
"properties": {
|
|
8532
|
+
"type": {
|
|
8533
|
+
"type": "string"
|
|
8534
|
+
},
|
|
8535
|
+
"id": {
|
|
8536
|
+
"type": "string"
|
|
8537
|
+
}
|
|
8538
|
+
}
|
|
8539
|
+
}
|
|
8540
|
+
}
|
|
8541
|
+
}
|
|
8542
|
+
},
|
|
8543
|
+
"jobs": {
|
|
8544
|
+
"title": "BriefRelationshipsJobsSchema",
|
|
8545
|
+
"type": "object",
|
|
8546
|
+
"properties": {
|
|
8547
|
+
"data": {
|
|
8548
|
+
"type": "array",
|
|
8549
|
+
"items": {
|
|
8550
|
+
"type": "object",
|
|
8551
|
+
"properties": {
|
|
8552
|
+
"type": {
|
|
8553
|
+
"type": "string"
|
|
8554
|
+
},
|
|
8555
|
+
"id": {
|
|
8556
|
+
"type": "string"
|
|
8557
|
+
}
|
|
8558
|
+
}
|
|
8559
|
+
}
|
|
8560
|
+
}
|
|
8561
|
+
}
|
|
8562
|
+
},
|
|
8563
|
+
"users": {
|
|
8564
|
+
"title": "BriefRelationshipsUsersSchema",
|
|
8565
|
+
"type": "object",
|
|
8566
|
+
"properties": {
|
|
8567
|
+
"data": {
|
|
8568
|
+
"type": "array",
|
|
8569
|
+
"items": {
|
|
8570
|
+
"type": "object",
|
|
8571
|
+
"properties": {
|
|
8572
|
+
"type": {
|
|
8573
|
+
"type": "string"
|
|
8574
|
+
},
|
|
8575
|
+
"id": {
|
|
8576
|
+
"type": "string"
|
|
8577
|
+
}
|
|
8578
|
+
}
|
|
8579
|
+
}
|
|
8580
|
+
}
|
|
8581
|
+
}
|
|
8582
|
+
}
|
|
8583
|
+
}
|
|
8584
|
+
}
|
|
8585
|
+
}
|
|
8586
|
+
}
|
|
8587
|
+
}
|
|
8588
|
+
},
|
|
8589
|
+
"_meta": {
|
|
8590
|
+
"method": "POST",
|
|
8591
|
+
"path": "/v1/briefs",
|
|
8592
|
+
"operationId": "createBrief"
|
|
8593
|
+
}
|
|
8594
|
+
},
|
|
8595
|
+
{
|
|
8596
|
+
"name": "list_briefs",
|
|
8597
|
+
"description": "List Briefs",
|
|
8598
|
+
"inputSchema": {
|
|
8599
|
+
"type": "object",
|
|
8600
|
+
"properties": {
|
|
8601
|
+
"filterStatus": {
|
|
8602
|
+
"type": "string",
|
|
8603
|
+
"description": "Returns briefs with the current status.",
|
|
8604
|
+
"enum": [
|
|
8605
|
+
"received",
|
|
8606
|
+
"processing",
|
|
8607
|
+
"processed",
|
|
8608
|
+
"failed"
|
|
8609
|
+
]
|
|
8610
|
+
},
|
|
8611
|
+
"filterSource": {
|
|
8612
|
+
"type": "string",
|
|
8613
|
+
"description": "Filter briefs by source channel.",
|
|
8614
|
+
"enum": [
|
|
8615
|
+
"form",
|
|
8616
|
+
"email",
|
|
8617
|
+
"call",
|
|
8618
|
+
"sms",
|
|
8619
|
+
"ats",
|
|
8620
|
+
"api"
|
|
8621
|
+
]
|
|
8622
|
+
},
|
|
8623
|
+
"filterCreatedFrom": {
|
|
8624
|
+
"type": "string",
|
|
8625
|
+
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
8626
|
+
},
|
|
8627
|
+
"filterCreatedTo": {
|
|
8628
|
+
"type": "string",
|
|
8629
|
+
"description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
|
|
8630
|
+
},
|
|
8631
|
+
"filterModifiedFrom": {
|
|
8632
|
+
"type": "string",
|
|
8633
|
+
"description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
|
|
8634
|
+
},
|
|
8635
|
+
"filterModifiedTo": {
|
|
8636
|
+
"type": "string",
|
|
8637
|
+
"description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
|
|
8638
|
+
},
|
|
8639
|
+
"pageSize": {
|
|
8640
|
+
"type": "integer",
|
|
8641
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
8642
|
+
},
|
|
8643
|
+
"pageNumber": {
|
|
8644
|
+
"type": "integer",
|
|
8645
|
+
"description": "Specifies the page number to retrieve. Used for traditional pagination."
|
|
8646
|
+
},
|
|
8647
|
+
"pageAfter": {
|
|
8648
|
+
"type": "string",
|
|
8649
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
8650
|
+
},
|
|
8651
|
+
"pageBefore": {
|
|
8652
|
+
"type": "string",
|
|
8653
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
8654
|
+
}
|
|
8655
|
+
}
|
|
8656
|
+
},
|
|
8657
|
+
"_meta": {
|
|
8658
|
+
"method": "GET",
|
|
8659
|
+
"path": "/v1/briefs",
|
|
8660
|
+
"operationId": "listBriefs"
|
|
8661
|
+
}
|
|
8662
|
+
},
|
|
8663
|
+
{
|
|
8664
|
+
"name": "briefs_options",
|
|
8665
|
+
"description": "Briefs Options",
|
|
8666
|
+
"inputSchema": {
|
|
8667
|
+
"type": "object",
|
|
8668
|
+
"properties": {}
|
|
8669
|
+
},
|
|
8670
|
+
"_meta": {
|
|
8671
|
+
"method": "OPTIONS",
|
|
8672
|
+
"path": "/v1/briefs",
|
|
8673
|
+
"operationId": "briefsOptions"
|
|
8674
|
+
}
|
|
8675
|
+
},
|
|
8676
|
+
{
|
|
8677
|
+
"name": "show_brief",
|
|
8678
|
+
"description": "Show Brief",
|
|
8679
|
+
"inputSchema": {
|
|
8680
|
+
"type": "object",
|
|
8681
|
+
"properties": {
|
|
8682
|
+
"briefId": {
|
|
8683
|
+
"type": "string",
|
|
8684
|
+
"description": "briefId parameter"
|
|
8685
|
+
}
|
|
8686
|
+
},
|
|
8687
|
+
"required": [
|
|
8688
|
+
"briefId"
|
|
8689
|
+
]
|
|
8690
|
+
},
|
|
8691
|
+
"_meta": {
|
|
8692
|
+
"method": "GET",
|
|
8693
|
+
"path": "/v1/briefs/{briefId}",
|
|
8694
|
+
"operationId": "showBrief"
|
|
8695
|
+
}
|
|
8696
|
+
},
|
|
8697
|
+
{
|
|
8698
|
+
"name": "update_brief",
|
|
8699
|
+
"description": "Update Brief",
|
|
8700
|
+
"inputSchema": {
|
|
8701
|
+
"type": "object",
|
|
8702
|
+
"properties": {
|
|
8703
|
+
"briefId": {
|
|
8704
|
+
"type": "string",
|
|
8705
|
+
"description": "briefId parameter"
|
|
8706
|
+
},
|
|
8707
|
+
"requestBody": {
|
|
8708
|
+
"title": "UpdateBriefRequestBody",
|
|
8709
|
+
"type": "object",
|
|
8710
|
+
"required": [
|
|
8711
|
+
"data"
|
|
8712
|
+
],
|
|
8713
|
+
"properties": {
|
|
8714
|
+
"data": {
|
|
8715
|
+
"title": "UpdateBriefRequestBodyData",
|
|
8716
|
+
"type": "object",
|
|
8717
|
+
"required": [
|
|
8718
|
+
"type",
|
|
8719
|
+
"id",
|
|
8720
|
+
"attributes"
|
|
8721
|
+
],
|
|
8722
|
+
"properties": {
|
|
8723
|
+
"type": {
|
|
8724
|
+
"type": "string",
|
|
8725
|
+
"enum": [
|
|
8726
|
+
"briefs"
|
|
8727
|
+
]
|
|
8728
|
+
},
|
|
8729
|
+
"id": {
|
|
8730
|
+
"type": "string"
|
|
8731
|
+
},
|
|
8732
|
+
"attributes": {
|
|
8733
|
+
"title": "BriefAttributesSchema",
|
|
8734
|
+
"type": "object",
|
|
8735
|
+
"required": [
|
|
8736
|
+
"title"
|
|
8737
|
+
],
|
|
8738
|
+
"properties": {
|
|
8739
|
+
"title": {
|
|
8740
|
+
"type": "string"
|
|
8741
|
+
},
|
|
8742
|
+
"description": {
|
|
8743
|
+
"type": "string"
|
|
8744
|
+
},
|
|
8745
|
+
"source": {
|
|
8746
|
+
"type": "string",
|
|
8747
|
+
"enum": [
|
|
8748
|
+
"form",
|
|
8749
|
+
"email",
|
|
8750
|
+
"call",
|
|
8751
|
+
"sms",
|
|
8752
|
+
"ats",
|
|
8753
|
+
"api"
|
|
8754
|
+
]
|
|
8755
|
+
},
|
|
8756
|
+
"status": {
|
|
8757
|
+
"type": "string",
|
|
8758
|
+
"enum": [
|
|
8759
|
+
"received",
|
|
8760
|
+
"processing",
|
|
8761
|
+
"processed",
|
|
8762
|
+
"failed"
|
|
8763
|
+
]
|
|
8764
|
+
},
|
|
8765
|
+
"language": {
|
|
8766
|
+
"type": "string"
|
|
8767
|
+
},
|
|
8768
|
+
"fields": {
|
|
8769
|
+
"type": "object",
|
|
8770
|
+
"description": "Custom form field answers keyed by field identifier"
|
|
8771
|
+
},
|
|
8772
|
+
"files": {
|
|
8773
|
+
"type": "array",
|
|
8774
|
+
"items": {
|
|
8775
|
+
"type": "object",
|
|
8776
|
+
"properties": {
|
|
8777
|
+
"key": {
|
|
8778
|
+
"type": "string"
|
|
8779
|
+
},
|
|
8780
|
+
"bucket": {
|
|
8781
|
+
"type": "string"
|
|
8782
|
+
},
|
|
8783
|
+
"name": {
|
|
8784
|
+
"type": "string"
|
|
8785
|
+
},
|
|
8786
|
+
"contentType": {
|
|
8787
|
+
"type": "string"
|
|
8788
|
+
}
|
|
8789
|
+
}
|
|
8790
|
+
}
|
|
8791
|
+
},
|
|
8792
|
+
"timestamps": {
|
|
8793
|
+
"title": "ResourceTimestampsSchema",
|
|
8794
|
+
"type": "object",
|
|
8795
|
+
"properties": {
|
|
8796
|
+
"created": {
|
|
8797
|
+
"type": "string",
|
|
8798
|
+
"format": "date-time"
|
|
8799
|
+
},
|
|
8800
|
+
"modified": {
|
|
8801
|
+
"type": "string",
|
|
8802
|
+
"format": "date-time"
|
|
8803
|
+
}
|
|
8804
|
+
}
|
|
8805
|
+
}
|
|
8806
|
+
}
|
|
8807
|
+
},
|
|
8808
|
+
"relationships": {
|
|
8809
|
+
"title": "BriefRelationshipsSchema",
|
|
8810
|
+
"type": "object",
|
|
8811
|
+
"properties": {
|
|
8812
|
+
"forms": {
|
|
8813
|
+
"title": "BriefRelationshipsFormsSchema",
|
|
8814
|
+
"type": "object",
|
|
8815
|
+
"properties": {
|
|
8816
|
+
"data": {
|
|
8817
|
+
"type": "array",
|
|
8818
|
+
"items": {
|
|
8819
|
+
"type": "object",
|
|
8820
|
+
"properties": {
|
|
8821
|
+
"type": {
|
|
8822
|
+
"type": "string"
|
|
8823
|
+
},
|
|
8824
|
+
"id": {
|
|
8825
|
+
"type": "string"
|
|
8826
|
+
}
|
|
8827
|
+
}
|
|
8828
|
+
}
|
|
8829
|
+
}
|
|
8830
|
+
}
|
|
8831
|
+
},
|
|
8832
|
+
"jobs": {
|
|
8833
|
+
"title": "BriefRelationshipsJobsSchema",
|
|
8834
|
+
"type": "object",
|
|
8835
|
+
"properties": {
|
|
8836
|
+
"data": {
|
|
8837
|
+
"type": "array",
|
|
8838
|
+
"items": {
|
|
8839
|
+
"type": "object",
|
|
8840
|
+
"properties": {
|
|
8841
|
+
"type": {
|
|
8842
|
+
"type": "string"
|
|
8843
|
+
},
|
|
8844
|
+
"id": {
|
|
8845
|
+
"type": "string"
|
|
8846
|
+
}
|
|
8847
|
+
}
|
|
8848
|
+
}
|
|
8849
|
+
}
|
|
8850
|
+
}
|
|
8851
|
+
},
|
|
8852
|
+
"users": {
|
|
8853
|
+
"title": "BriefRelationshipsUsersSchema",
|
|
8854
|
+
"type": "object",
|
|
8855
|
+
"properties": {
|
|
8856
|
+
"data": {
|
|
8857
|
+
"type": "array",
|
|
8858
|
+
"items": {
|
|
8859
|
+
"type": "object",
|
|
8860
|
+
"properties": {
|
|
8861
|
+
"type": {
|
|
8862
|
+
"type": "string"
|
|
8863
|
+
},
|
|
8864
|
+
"id": {
|
|
8865
|
+
"type": "string"
|
|
8866
|
+
}
|
|
8867
|
+
}
|
|
8868
|
+
}
|
|
8869
|
+
}
|
|
8870
|
+
}
|
|
8871
|
+
}
|
|
8872
|
+
}
|
|
8873
|
+
}
|
|
8874
|
+
}
|
|
8875
|
+
}
|
|
8876
|
+
}
|
|
8877
|
+
}
|
|
8878
|
+
},
|
|
8879
|
+
"required": [
|
|
8880
|
+
"briefId",
|
|
8881
|
+
"requestBody"
|
|
8882
|
+
]
|
|
8883
|
+
},
|
|
8884
|
+
"_meta": {
|
|
8885
|
+
"method": "PATCH",
|
|
8886
|
+
"path": "/v1/briefs/{briefId}",
|
|
8887
|
+
"operationId": "updateBrief"
|
|
8888
|
+
}
|
|
8889
|
+
},
|
|
8890
|
+
{
|
|
8891
|
+
"name": "delete_brief",
|
|
8892
|
+
"description": "Delete Brief",
|
|
8893
|
+
"inputSchema": {
|
|
8894
|
+
"type": "object",
|
|
8895
|
+
"properties": {
|
|
8896
|
+
"briefId": {
|
|
8897
|
+
"type": "string",
|
|
8898
|
+
"description": "briefId parameter"
|
|
8899
|
+
},
|
|
8900
|
+
"permanentDelete": {
|
|
8901
|
+
"type": "string",
|
|
8902
|
+
"description": "Set to true for permanent deletion.",
|
|
8903
|
+
"enum": [
|
|
8904
|
+
"true",
|
|
8905
|
+
"false"
|
|
8906
|
+
]
|
|
8907
|
+
}
|
|
8908
|
+
},
|
|
8909
|
+
"required": [
|
|
8910
|
+
"briefId"
|
|
8911
|
+
]
|
|
8912
|
+
},
|
|
8913
|
+
"_meta": {
|
|
8914
|
+
"method": "DELETE",
|
|
8915
|
+
"path": "/v1/briefs/{briefId}",
|
|
8916
|
+
"operationId": "deleteBrief"
|
|
8917
|
+
}
|
|
8918
|
+
},
|
|
8919
|
+
{
|
|
8920
|
+
"name": "brief_options",
|
|
8921
|
+
"description": "Brief Options",
|
|
8922
|
+
"inputSchema": {
|
|
8923
|
+
"type": "object",
|
|
8924
|
+
"properties": {}
|
|
8925
|
+
},
|
|
8926
|
+
"_meta": {
|
|
8927
|
+
"method": "OPTIONS",
|
|
8928
|
+
"path": "/v1/briefs/{briefId}",
|
|
8929
|
+
"operationId": "briefOptions"
|
|
8930
|
+
}
|
|
8931
|
+
},
|
|
8403
8932
|
{
|
|
8404
8933
|
"name": "list_browsers",
|
|
8405
8934
|
"description": "List Browsers",
|
|
@@ -12603,7 +13132,8 @@
|
|
|
12603
13132
|
"running",
|
|
12604
13133
|
"completed",
|
|
12605
13134
|
"failed",
|
|
12606
|
-
"aborted"
|
|
13135
|
+
"aborted",
|
|
13136
|
+
"paused"
|
|
12607
13137
|
]
|
|
12608
13138
|
},
|
|
12609
13139
|
"filterCreatedFrom": {
|