@smartytalent/mcp-tools 0.7.12 → 0.8.0
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 +220 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -9556,6 +9556,226 @@
|
|
|
9556
9556
|
"operationId": "feedbackOptions"
|
|
9557
9557
|
}
|
|
9558
9558
|
},
|
|
9559
|
+
{
|
|
9560
|
+
"name": "list_surveys",
|
|
9561
|
+
"description": "List Surveys",
|
|
9562
|
+
"inputSchema": {
|
|
9563
|
+
"type": "object",
|
|
9564
|
+
"properties": {
|
|
9565
|
+
"filterStatus": {
|
|
9566
|
+
"type": "string",
|
|
9567
|
+
"description": "Returns surveys with the current status.",
|
|
9568
|
+
"enum": [
|
|
9569
|
+
"pending",
|
|
9570
|
+
"completed",
|
|
9571
|
+
"expired"
|
|
9572
|
+
]
|
|
9573
|
+
},
|
|
9574
|
+
"filterCandidateId": {
|
|
9575
|
+
"type": "string",
|
|
9576
|
+
"description": "Filter by the candidate the survey was sent to."
|
|
9577
|
+
},
|
|
9578
|
+
"filterCreatedFrom": {
|
|
9579
|
+
"type": "string",
|
|
9580
|
+
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
9581
|
+
},
|
|
9582
|
+
"filterCreatedTo": {
|
|
9583
|
+
"type": "string",
|
|
9584
|
+
"description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
|
|
9585
|
+
},
|
|
9586
|
+
"filterModifiedFrom": {
|
|
9587
|
+
"type": "string",
|
|
9588
|
+
"description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
|
|
9589
|
+
},
|
|
9590
|
+
"filterModifiedTo": {
|
|
9591
|
+
"type": "string",
|
|
9592
|
+
"description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
|
|
9593
|
+
},
|
|
9594
|
+
"pageSize": {
|
|
9595
|
+
"type": "integer",
|
|
9596
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
9597
|
+
},
|
|
9598
|
+
"pageNumber": {
|
|
9599
|
+
"type": "integer",
|
|
9600
|
+
"description": "Specifies the page number to retrieve. Used for traditional pagination."
|
|
9601
|
+
},
|
|
9602
|
+
"pageAfter": {
|
|
9603
|
+
"type": "string",
|
|
9604
|
+
"description": "Opaque base64-encoded cursor returned by a previous list response, used for forward cursor-based pagination. Pass the value verbatim; do not decode or mutate it."
|
|
9605
|
+
},
|
|
9606
|
+
"pageBefore": {
|
|
9607
|
+
"type": "string",
|
|
9608
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
9609
|
+
}
|
|
9610
|
+
}
|
|
9611
|
+
},
|
|
9612
|
+
"_meta": {
|
|
9613
|
+
"method": "GET",
|
|
9614
|
+
"path": "/v1/surveys",
|
|
9615
|
+
"operationId": "listSurveys"
|
|
9616
|
+
}
|
|
9617
|
+
},
|
|
9618
|
+
{
|
|
9619
|
+
"name": "surveys_options",
|
|
9620
|
+
"description": "Surveys Options",
|
|
9621
|
+
"inputSchema": {
|
|
9622
|
+
"type": "object",
|
|
9623
|
+
"properties": {}
|
|
9624
|
+
},
|
|
9625
|
+
"_meta": {
|
|
9626
|
+
"method": "OPTIONS",
|
|
9627
|
+
"path": "/v1/surveys",
|
|
9628
|
+
"operationId": "surveysOptions"
|
|
9629
|
+
}
|
|
9630
|
+
},
|
|
9631
|
+
{
|
|
9632
|
+
"name": "show_survey",
|
|
9633
|
+
"description": "Show Survey",
|
|
9634
|
+
"inputSchema": {
|
|
9635
|
+
"type": "object",
|
|
9636
|
+
"properties": {
|
|
9637
|
+
"surveyId": {
|
|
9638
|
+
"type": "string",
|
|
9639
|
+
"description": "surveyId parameter"
|
|
9640
|
+
}
|
|
9641
|
+
},
|
|
9642
|
+
"required": [
|
|
9643
|
+
"surveyId"
|
|
9644
|
+
]
|
|
9645
|
+
},
|
|
9646
|
+
"_meta": {
|
|
9647
|
+
"method": "GET",
|
|
9648
|
+
"path": "/v1/surveys/{surveyId}",
|
|
9649
|
+
"operationId": "showSurvey"
|
|
9650
|
+
}
|
|
9651
|
+
},
|
|
9652
|
+
{
|
|
9653
|
+
"name": "survey_options",
|
|
9654
|
+
"description": "Survey Options",
|
|
9655
|
+
"inputSchema": {
|
|
9656
|
+
"type": "object",
|
|
9657
|
+
"properties": {}
|
|
9658
|
+
},
|
|
9659
|
+
"_meta": {
|
|
9660
|
+
"method": "OPTIONS",
|
|
9661
|
+
"path": "/v1/surveys/{surveyId}",
|
|
9662
|
+
"operationId": "surveyOptions"
|
|
9663
|
+
}
|
|
9664
|
+
},
|
|
9665
|
+
{
|
|
9666
|
+
"name": "show_guest_survey",
|
|
9667
|
+
"description": "Show Guest Survey",
|
|
9668
|
+
"inputSchema": {
|
|
9669
|
+
"type": "object",
|
|
9670
|
+
"properties": {
|
|
9671
|
+
"tenantId": {
|
|
9672
|
+
"type": "string",
|
|
9673
|
+
"description": "Base tenant id from the emailed link. Half of the guest auth pair."
|
|
9674
|
+
},
|
|
9675
|
+
"token": {
|
|
9676
|
+
"type": "string",
|
|
9677
|
+
"description": "Per-survey accessToken from the emailed link. Compared with hmac.compare_digest; mismatch returns 404."
|
|
9678
|
+
}
|
|
9679
|
+
},
|
|
9680
|
+
"required": [
|
|
9681
|
+
"tenantId",
|
|
9682
|
+
"token"
|
|
9683
|
+
]
|
|
9684
|
+
},
|
|
9685
|
+
"_meta": {
|
|
9686
|
+
"method": "GET",
|
|
9687
|
+
"path": "/v1/guest/surveys/{surveyId}",
|
|
9688
|
+
"operationId": "showGuestSurvey"
|
|
9689
|
+
}
|
|
9690
|
+
},
|
|
9691
|
+
{
|
|
9692
|
+
"name": "submit_guest_survey",
|
|
9693
|
+
"description": "Submit Guest Survey",
|
|
9694
|
+
"inputSchema": {
|
|
9695
|
+
"title": "SubmitGuestSurveyRequestBody",
|
|
9696
|
+
"type": "object",
|
|
9697
|
+
"required": [
|
|
9698
|
+
"data",
|
|
9699
|
+
"meta"
|
|
9700
|
+
],
|
|
9701
|
+
"properties": {
|
|
9702
|
+
"data": {
|
|
9703
|
+
"title": "SubmitGuestSurveyRequestBodyData",
|
|
9704
|
+
"type": "object",
|
|
9705
|
+
"required": [
|
|
9706
|
+
"type",
|
|
9707
|
+
"attributes"
|
|
9708
|
+
],
|
|
9709
|
+
"properties": {
|
|
9710
|
+
"type": {
|
|
9711
|
+
"type": "string",
|
|
9712
|
+
"enum": [
|
|
9713
|
+
"surveys"
|
|
9714
|
+
]
|
|
9715
|
+
},
|
|
9716
|
+
"id": {
|
|
9717
|
+
"type": "string"
|
|
9718
|
+
},
|
|
9719
|
+
"attributes": {
|
|
9720
|
+
"title": "SubmitGuestSurveyRequestBodyDataAttributes",
|
|
9721
|
+
"type": "object",
|
|
9722
|
+
"required": [
|
|
9723
|
+
"score"
|
|
9724
|
+
],
|
|
9725
|
+
"properties": {
|
|
9726
|
+
"score": {
|
|
9727
|
+
"type": "integer",
|
|
9728
|
+
"minimum": 0,
|
|
9729
|
+
"maximum": 10,
|
|
9730
|
+
"description": "The NPS answer. 0-6 buckets to detractor, 7-8 passive, 9-10 promoter - the bucketing happens server-side."
|
|
9731
|
+
},
|
|
9732
|
+
"comment": {
|
|
9733
|
+
"type": "string",
|
|
9734
|
+
"maxLength": 2000,
|
|
9735
|
+
"description": "Optional free text. Trimmed server-side; an empty string is stored as absent."
|
|
9736
|
+
}
|
|
9737
|
+
}
|
|
9738
|
+
}
|
|
9739
|
+
}
|
|
9740
|
+
},
|
|
9741
|
+
"meta": {
|
|
9742
|
+
"title": "GuestSurveyMetaSchema",
|
|
9743
|
+
"description": "Auth context for the unauthenticated PATCH /v1/guest/surveys/{id}.\nBoth values come from the emailed link, never from a session -\nthere is no authorizer on the guest path. tenantId is the BASE\ntenant id; accessToken is the per-survey token minted at create and\ncompared with hmac.compare_digest. Any mismatch returns 404,\nintentionally indistinguishable from \"survey not found\" so survey\nexistence is never leaked.",
|
|
9744
|
+
"type": "object",
|
|
9745
|
+
"required": [
|
|
9746
|
+
"tenantId",
|
|
9747
|
+
"accessToken"
|
|
9748
|
+
],
|
|
9749
|
+
"properties": {
|
|
9750
|
+
"tenantId": {
|
|
9751
|
+
"type": "string"
|
|
9752
|
+
},
|
|
9753
|
+
"accessToken": {
|
|
9754
|
+
"type": "string"
|
|
9755
|
+
}
|
|
9756
|
+
}
|
|
9757
|
+
}
|
|
9758
|
+
}
|
|
9759
|
+
},
|
|
9760
|
+
"_meta": {
|
|
9761
|
+
"method": "PATCH",
|
|
9762
|
+
"path": "/v1/guest/surveys/{surveyId}",
|
|
9763
|
+
"operationId": "submitGuestSurvey"
|
|
9764
|
+
}
|
|
9765
|
+
},
|
|
9766
|
+
{
|
|
9767
|
+
"name": "guest_survey_options",
|
|
9768
|
+
"description": "Guest Survey Options",
|
|
9769
|
+
"inputSchema": {
|
|
9770
|
+
"type": "object",
|
|
9771
|
+
"properties": {}
|
|
9772
|
+
},
|
|
9773
|
+
"_meta": {
|
|
9774
|
+
"method": "OPTIONS",
|
|
9775
|
+
"path": "/v1/guest/surveys/{surveyId}",
|
|
9776
|
+
"operationId": "guestSurveyOptions"
|
|
9777
|
+
}
|
|
9778
|
+
},
|
|
9559
9779
|
{
|
|
9560
9780
|
"name": "list_schedules",
|
|
9561
9781
|
"description": "List Schedules",
|