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