@smartytalent/mcp-tools 0.1.33-dev.35 → 0.1.33-dev.36

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 +464 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -16610,6 +16610,470 @@
16610
16610
  "operationId": "assessmentOptions"
16611
16611
  }
16612
16612
  },
16613
+ {
16614
+ "name": "create_attempt",
16615
+ "description": "Create Attempt",
16616
+ "inputSchema": {
16617
+ "type": "object",
16618
+ "required": [
16619
+ "data"
16620
+ ],
16621
+ "properties": {
16622
+ "data": {
16623
+ "type": "object",
16624
+ "required": [
16625
+ "type",
16626
+ "relationships"
16627
+ ],
16628
+ "properties": {
16629
+ "type": {
16630
+ "type": "string",
16631
+ "enum": [
16632
+ "attempts"
16633
+ ]
16634
+ },
16635
+ "attributes": {
16636
+ "type": "object",
16637
+ "properties": {
16638
+ "languageCode": {
16639
+ "type": "string"
16640
+ },
16641
+ "durationMinutes": {
16642
+ "type": "number"
16643
+ },
16644
+ "expiresAt": {
16645
+ "type": "string",
16646
+ "format": "date-time"
16647
+ }
16648
+ }
16649
+ },
16650
+ "relationships": {
16651
+ "type": "object",
16652
+ "required": [
16653
+ "assessment",
16654
+ "candidate"
16655
+ ],
16656
+ "properties": {
16657
+ "assessment": {
16658
+ "type": "object"
16659
+ },
16660
+ "candidate": {
16661
+ "type": "object"
16662
+ },
16663
+ "job": {
16664
+ "type": "object"
16665
+ }
16666
+ }
16667
+ }
16668
+ }
16669
+ }
16670
+ }
16671
+ },
16672
+ "_meta": {
16673
+ "method": "POST",
16674
+ "path": "/v1/attempts",
16675
+ "operationId": "createAttempt"
16676
+ }
16677
+ },
16678
+ {
16679
+ "name": "list_attempts",
16680
+ "description": "List Attempts",
16681
+ "inputSchema": {
16682
+ "type": "object",
16683
+ "properties": {
16684
+ "filterStatus": {
16685
+ "type": "string",
16686
+ "description": "Filter by attempt status.",
16687
+ "enum": [
16688
+ "pending",
16689
+ "inProgress",
16690
+ "submitted",
16691
+ "evaluated",
16692
+ "reviewed",
16693
+ "anonymized",
16694
+ "failed"
16695
+ ]
16696
+ },
16697
+ "filterAssessmentId": {
16698
+ "type": "string",
16699
+ "description": "Filter by assessment template id."
16700
+ },
16701
+ "filterCandidateId": {
16702
+ "type": "string",
16703
+ "description": "Filter by candidate id."
16704
+ },
16705
+ "filterCreatedFrom": {
16706
+ "type": "string",
16707
+ "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
16708
+ },
16709
+ "filterCreatedTo": {
16710
+ "type": "string",
16711
+ "description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
16712
+ },
16713
+ "filterModifiedFrom": {
16714
+ "type": "string",
16715
+ "description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
16716
+ },
16717
+ "filterModifiedTo": {
16718
+ "type": "string",
16719
+ "description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
16720
+ },
16721
+ "pageSize": {
16722
+ "type": "integer",
16723
+ "description": "Specifies the number of items to retrieve per page. The maximum value is 100."
16724
+ },
16725
+ "pageNumber": {
16726
+ "type": "integer",
16727
+ "description": "Specifies the page number to retrieve. Used for traditional pagination."
16728
+ },
16729
+ "pageAfter": {
16730
+ "type": "string",
16731
+ "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."
16732
+ },
16733
+ "pageBefore": {
16734
+ "type": "string",
16735
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
16736
+ }
16737
+ }
16738
+ },
16739
+ "_meta": {
16740
+ "method": "GET",
16741
+ "path": "/v1/attempts",
16742
+ "operationId": "listAttempts"
16743
+ }
16744
+ },
16745
+ {
16746
+ "name": "attempts_options",
16747
+ "description": "Attempts Options",
16748
+ "inputSchema": {
16749
+ "type": "object",
16750
+ "properties": {}
16751
+ },
16752
+ "_meta": {
16753
+ "method": "OPTIONS",
16754
+ "path": "/v1/attempts",
16755
+ "operationId": "attemptsOptions"
16756
+ }
16757
+ },
16758
+ {
16759
+ "name": "show_attempt",
16760
+ "description": "Show Attempt",
16761
+ "inputSchema": {
16762
+ "type": "object",
16763
+ "properties": {}
16764
+ },
16765
+ "_meta": {
16766
+ "method": "GET",
16767
+ "path": "/v1/attempts/{attemptId}",
16768
+ "operationId": "showAttempt"
16769
+ }
16770
+ },
16771
+ {
16772
+ "name": "update_attempt",
16773
+ "description": "Update Attempt",
16774
+ "inputSchema": {
16775
+ "type": "object",
16776
+ "required": [
16777
+ "data"
16778
+ ],
16779
+ "properties": {
16780
+ "data": {
16781
+ "type": "object",
16782
+ "required": [
16783
+ "type",
16784
+ "id"
16785
+ ],
16786
+ "properties": {
16787
+ "type": {
16788
+ "type": "string",
16789
+ "enum": [
16790
+ "attempts"
16791
+ ]
16792
+ },
16793
+ "id": {
16794
+ "type": "string"
16795
+ },
16796
+ "attributes": {
16797
+ "type": "object"
16798
+ },
16799
+ "relationships": {
16800
+ "type": "object"
16801
+ }
16802
+ }
16803
+ }
16804
+ }
16805
+ },
16806
+ "_meta": {
16807
+ "method": "PATCH",
16808
+ "path": "/v1/attempts/{attemptId}",
16809
+ "operationId": "updateAttempt"
16810
+ }
16811
+ },
16812
+ {
16813
+ "name": "delete_attempt",
16814
+ "description": "Delete Attempt",
16815
+ "inputSchema": {
16816
+ "type": "object",
16817
+ "properties": {
16818
+ "permanentDelete": {
16819
+ "type": "string",
16820
+ "description": "permanentDelete parameter",
16821
+ "enum": [
16822
+ "true",
16823
+ "false"
16824
+ ]
16825
+ }
16826
+ }
16827
+ },
16828
+ "_meta": {
16829
+ "method": "DELETE",
16830
+ "path": "/v1/attempts/{attemptId}",
16831
+ "operationId": "deleteAttempt"
16832
+ }
16833
+ },
16834
+ {
16835
+ "name": "attempt_options",
16836
+ "description": "Attempt Options",
16837
+ "inputSchema": {
16838
+ "type": "object",
16839
+ "properties": {}
16840
+ },
16841
+ "_meta": {
16842
+ "method": "OPTIONS",
16843
+ "path": "/v1/attempts/{attemptId}",
16844
+ "operationId": "attemptOptions"
16845
+ }
16846
+ },
16847
+ {
16848
+ "name": "reevaluate_attempt",
16849
+ "description": "Reevaluate Attempt",
16850
+ "inputSchema": {
16851
+ "type": "object",
16852
+ "properties": {}
16853
+ },
16854
+ "_meta": {
16855
+ "method": "POST",
16856
+ "path": "/v1/attempts/{attemptId}/reevaluate",
16857
+ "operationId": "reevaluateAttempt"
16858
+ }
16859
+ },
16860
+ {
16861
+ "name": "reevaluate_attempt_options",
16862
+ "description": "Reevaluate Options",
16863
+ "inputSchema": {
16864
+ "type": "object",
16865
+ "properties": {}
16866
+ },
16867
+ "_meta": {
16868
+ "method": "OPTIONS",
16869
+ "path": "/v1/attempts/{attemptId}/reevaluate",
16870
+ "operationId": "reevaluateAttemptOptions"
16871
+ }
16872
+ },
16873
+ {
16874
+ "name": "start_guest_attempt",
16875
+ "description": "Start Guest Attempt",
16876
+ "inputSchema": {
16877
+ "type": "object",
16878
+ "required": [
16879
+ "data",
16880
+ "meta"
16881
+ ],
16882
+ "properties": {
16883
+ "data": {
16884
+ "type": "object",
16885
+ "required": [
16886
+ "type",
16887
+ "id"
16888
+ ],
16889
+ "properties": {
16890
+ "type": {
16891
+ "type": "string",
16892
+ "enum": [
16893
+ "attempts"
16894
+ ]
16895
+ },
16896
+ "id": {
16897
+ "type": "string"
16898
+ }
16899
+ }
16900
+ },
16901
+ "meta": {
16902
+ "type": "object",
16903
+ "required": [
16904
+ "tenantId",
16905
+ "accessToken"
16906
+ ],
16907
+ "properties": {
16908
+ "tenantId": {
16909
+ "type": "string"
16910
+ },
16911
+ "accessToken": {
16912
+ "type": "string"
16913
+ }
16914
+ }
16915
+ }
16916
+ }
16917
+ },
16918
+ "_meta": {
16919
+ "method": "POST",
16920
+ "path": "/v1/guest/attempts",
16921
+ "operationId": "startGuestAttempt"
16922
+ }
16923
+ },
16924
+ {
16925
+ "name": "guest_attempts_options",
16926
+ "description": "Guest Attempts Options",
16927
+ "inputSchema": {
16928
+ "type": "object",
16929
+ "properties": {}
16930
+ },
16931
+ "_meta": {
16932
+ "method": "OPTIONS",
16933
+ "path": "/v1/guest/attempts",
16934
+ "operationId": "guestAttemptsOptions"
16935
+ }
16936
+ },
16937
+ {
16938
+ "name": "show_guest_attempt",
16939
+ "description": "Show Guest Attempt",
16940
+ "inputSchema": {
16941
+ "type": "object",
16942
+ "properties": {
16943
+ "tenantId": {
16944
+ "type": "string",
16945
+ "description": "tenantId parameter"
16946
+ },
16947
+ "token": {
16948
+ "type": "string",
16949
+ "description": "token parameter"
16950
+ }
16951
+ },
16952
+ "required": [
16953
+ "tenantId",
16954
+ "token"
16955
+ ]
16956
+ },
16957
+ "_meta": {
16958
+ "method": "GET",
16959
+ "path": "/v1/guest/attempts/{attemptId}",
16960
+ "operationId": "showGuestAttempt"
16961
+ }
16962
+ },
16963
+ {
16964
+ "name": "update_guest_attempt",
16965
+ "description": "Update Guest Attempt",
16966
+ "inputSchema": {
16967
+ "type": "object",
16968
+ "required": [
16969
+ "data",
16970
+ "meta"
16971
+ ],
16972
+ "properties": {
16973
+ "data": {
16974
+ "type": "object",
16975
+ "required": [
16976
+ "type",
16977
+ "id"
16978
+ ],
16979
+ "properties": {
16980
+ "type": {
16981
+ "type": "string",
16982
+ "enum": [
16983
+ "attempts"
16984
+ ]
16985
+ },
16986
+ "id": {
16987
+ "type": "string"
16988
+ },
16989
+ "attributes": {
16990
+ "type": "object",
16991
+ "properties": {
16992
+ "answers": {
16993
+ "type": "array",
16994
+ "description": "Per-question answer objects. Free-form because question types vary (multiple-choice, free-text, file upload, code editor).",
16995
+ "items": {
16996
+ "type": "object",
16997
+ "properties": {
16998
+ "questionId": {
16999
+ "type": "string"
17000
+ },
17001
+ "answer": {
17002
+ "description": "Candidate's answer - string, number, array of selected option ids, etc. Validation against the template's question type happens at evaluation time."
17003
+ },
17004
+ "files": {
17005
+ "type": "array",
17006
+ "description": "Optional file uploads attached to this answer.",
17007
+ "items": {
17008
+ "type": "object",
17009
+ "properties": {
17010
+ "fileKey": {
17011
+ "type": "string"
17012
+ },
17013
+ "fileName": {
17014
+ "type": "string"
17015
+ },
17016
+ "contentType": {
17017
+ "type": "string"
17018
+ },
17019
+ "size": {
17020
+ "type": "integer"
17021
+ }
17022
+ }
17023
+ }
17024
+ }
17025
+ }
17026
+ }
17027
+ },
17028
+ "proctoring": {
17029
+ "type": "object"
17030
+ },
17031
+ "status": {
17032
+ "type": "string",
17033
+ "enum": [
17034
+ "submitted"
17035
+ ]
17036
+ }
17037
+ }
17038
+ }
17039
+ }
17040
+ },
17041
+ "meta": {
17042
+ "type": "object",
17043
+ "required": [
17044
+ "tenantId",
17045
+ "accessToken"
17046
+ ],
17047
+ "properties": {
17048
+ "tenantId": {
17049
+ "type": "string"
17050
+ },
17051
+ "accessToken": {
17052
+ "type": "string"
17053
+ }
17054
+ }
17055
+ }
17056
+ }
17057
+ },
17058
+ "_meta": {
17059
+ "method": "PATCH",
17060
+ "path": "/v1/guest/attempts/{attemptId}",
17061
+ "operationId": "updateGuestAttempt"
17062
+ }
17063
+ },
17064
+ {
17065
+ "name": "guest_attempt_options",
17066
+ "description": "Guest Attempt Options",
17067
+ "inputSchema": {
17068
+ "type": "object",
17069
+ "properties": {}
17070
+ },
17071
+ "_meta": {
17072
+ "method": "OPTIONS",
17073
+ "path": "/v1/guest/attempts/{attemptId}",
17074
+ "operationId": "guestAttemptOptions"
17075
+ }
17076
+ },
16613
17077
  {
16614
17078
  "name": "list_actions",
16615
17079
  "description": "List Actions",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.35",
3
+ "version": "0.1.33-dev.36",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",