@smartytalent/mcp-tools 0.8.6 → 0.8.8

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 +396 -1
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -1036,7 +1036,8 @@
1036
1036
  "enum": [
1037
1037
  "logo",
1038
1038
  "background",
1039
- "favicon"
1039
+ "favicon",
1040
+ "careers"
1040
1041
  ]
1041
1042
  }
1042
1043
  }
@@ -8410,6 +8411,16 @@
8410
8411
  "archived"
8411
8412
  ]
8412
8413
  },
8414
+ "filterKind": {
8415
+ "type": "string",
8416
+ "description": "Returns forms of one kind (e.g. candidateSubmission) - the careers/apply editors resolve the application form without paging everything.",
8417
+ "enum": [
8418
+ "jobBrief",
8419
+ "candidateSubmission",
8420
+ "talentSubmission",
8421
+ "general"
8422
+ ]
8423
+ },
8413
8424
  "filterCreatedFrom": {
8414
8425
  "type": "string",
8415
8426
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
@@ -10845,6 +10856,382 @@
10845
10856
  "operationId": "guestDocumentOptions"
10846
10857
  }
10847
10858
  },
10859
+ {
10860
+ "name": "list_careers",
10861
+ "description": "List Careers",
10862
+ "inputSchema": {
10863
+ "type": "object",
10864
+ "properties": {
10865
+ "filterStatus": {
10866
+ "type": "string",
10867
+ "description": "filterStatus parameter",
10868
+ "enum": [
10869
+ "draft",
10870
+ "active",
10871
+ "archived"
10872
+ ]
10873
+ },
10874
+ "filterCreatedFrom": {
10875
+ "type": "string",
10876
+ "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
10877
+ },
10878
+ "filterCreatedTo": {
10879
+ "type": "string",
10880
+ "description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
10881
+ },
10882
+ "filterModifiedFrom": {
10883
+ "type": "string",
10884
+ "description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
10885
+ },
10886
+ "filterModifiedTo": {
10887
+ "type": "string",
10888
+ "description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
10889
+ },
10890
+ "pageSize": {
10891
+ "type": "integer",
10892
+ "description": "Specifies the number of items to retrieve per page. The maximum value is 100."
10893
+ },
10894
+ "pageNumber": {
10895
+ "type": "integer",
10896
+ "description": "Specifies the page number to retrieve. Used for traditional pagination."
10897
+ },
10898
+ "pageAfter": {
10899
+ "type": "string",
10900
+ "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."
10901
+ },
10902
+ "pageBefore": {
10903
+ "type": "string",
10904
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
10905
+ }
10906
+ }
10907
+ },
10908
+ "_meta": {
10909
+ "method": "GET",
10910
+ "path": "/v1/careers",
10911
+ "operationId": "listCareers"
10912
+ }
10913
+ },
10914
+ {
10915
+ "name": "create_career",
10916
+ "description": "Create Career",
10917
+ "inputSchema": {
10918
+ "title": "CreateCareerRequestBody",
10919
+ "type": "object",
10920
+ "required": [
10921
+ "data"
10922
+ ],
10923
+ "properties": {
10924
+ "data": {
10925
+ "title": "CreateCareerRequestBodyData",
10926
+ "type": "object",
10927
+ "required": [
10928
+ "type"
10929
+ ],
10930
+ "properties": {
10931
+ "type": {
10932
+ "type": "string",
10933
+ "enum": [
10934
+ "careers"
10935
+ ]
10936
+ },
10937
+ "attributes": {
10938
+ "title": "CreateCareerRequestBodyDataAttributes",
10939
+ "type": "object",
10940
+ "properties": {
10941
+ "name": {
10942
+ "type": "string",
10943
+ "minLength": 1,
10944
+ "maxLength": 255
10945
+ },
10946
+ "sourceLanguage": {
10947
+ "type": "string",
10948
+ "description": "BCP-47 tag; defaults to en-US. Seeds the skeleton's locale."
10949
+ },
10950
+ "content": {
10951
+ "title": "CareersContentSchema",
10952
+ "type": "object",
10953
+ "description": "Ordered-blocks careers document. Locale keys are BCP-47 (en-US,\npl-PL, ...). Publish rules (mirrored by the editor): schemaVersion\n1; 1-24 blocks with unique ids; exactly one enabled hero (FIRST\namong enabled blocks) and one enabled positions; <=12 items per\nrepeater; every locale-map string of an ENABLED block non-empty for\nevery locale in `locales`; `locales` is a non-empty subset of the\ntenant's activeLanguages plus sourceLanguage and must contain\nsourceLanguage; absolute URLs only under the tenant's OWN CDN\nprefixes (tenants/{shortCode}/ or tenants/{tenantId}/); no < or >\nin text; <=131072 BYTES (UTF-8).",
10954
+ "properties": {
10955
+ "schemaVersion": {
10956
+ "type": "integer",
10957
+ "enum": [
10958
+ 1
10959
+ ]
10960
+ },
10961
+ "sourceLanguage": {
10962
+ "type": "string",
10963
+ "description": "BCP-47 tag."
10964
+ },
10965
+ "locales": {
10966
+ "type": "array",
10967
+ "items": {
10968
+ "type": "string"
10969
+ },
10970
+ "description": "The locales the page publishes in. The public language switcher offers exactly these."
10971
+ },
10972
+ "blocks": {
10973
+ "type": "array",
10974
+ "minItems": 1,
10975
+ "maxItems": 24,
10976
+ "items": {
10977
+ "title": "CareersBlockSchema",
10978
+ "type": "object",
10979
+ "description": "One page section. `data` is the block-type-specific payload: plain\nfields (icon names, urls) plus locale maps\n({\"en-US\": \"...\", \"pl-PL\": \"...\"}) for every visitor-facing string;\nrepeaters are arrays of such objects (<=12 items). The catalog is\nCLOSED - there is no free-form HTML block (XSS door on a public\npage).",
10980
+ "properties": {
10981
+ "id": {
10982
+ "type": "string",
10983
+ "maxLength": 64,
10984
+ "description": "Stable within the document; [A-Za-z0-9_-]."
10985
+ },
10986
+ "type": {
10987
+ "type": "string",
10988
+ "enum": [
10989
+ "hero",
10990
+ "stats",
10991
+ "positions",
10992
+ "features",
10993
+ "team",
10994
+ "testimonials",
10995
+ "faq",
10996
+ "gallery",
10997
+ "cta",
10998
+ "richText"
10999
+ ]
11000
+ },
11001
+ "enabled": {
11002
+ "type": "boolean",
11003
+ "description": "Disabled blocks stay in the draft (and keep translations) but never ship to the public doc and are locale-exempt at publish."
11004
+ },
11005
+ "data": {
11006
+ "type": "object",
11007
+ "additionalProperties": true
11008
+ }
11009
+ }
11010
+ }
11011
+ }
11012
+ }
11013
+ }
11014
+ }
11015
+ }
11016
+ }
11017
+ }
11018
+ }
11019
+ },
11020
+ "_meta": {
11021
+ "method": "POST",
11022
+ "path": "/v1/careers",
11023
+ "operationId": "createCareer"
11024
+ }
11025
+ },
11026
+ {
11027
+ "name": "careers_options",
11028
+ "description": "Careers Options",
11029
+ "inputSchema": {
11030
+ "type": "object",
11031
+ "properties": {}
11032
+ },
11033
+ "_meta": {
11034
+ "method": "OPTIONS",
11035
+ "path": "/v1/careers",
11036
+ "operationId": "careersOptions"
11037
+ }
11038
+ },
11039
+ {
11040
+ "name": "show_career",
11041
+ "description": "Show Career",
11042
+ "inputSchema": {
11043
+ "type": "object",
11044
+ "properties": {
11045
+ "careerId": {
11046
+ "type": "string",
11047
+ "description": "careerId parameter"
11048
+ }
11049
+ },
11050
+ "required": [
11051
+ "careerId"
11052
+ ]
11053
+ },
11054
+ "_meta": {
11055
+ "method": "GET",
11056
+ "path": "/v1/careers/{careerId}",
11057
+ "operationId": "showCareer"
11058
+ }
11059
+ },
11060
+ {
11061
+ "name": "update_career",
11062
+ "description": "Update Career",
11063
+ "inputSchema": {
11064
+ "type": "object",
11065
+ "properties": {
11066
+ "careerId": {
11067
+ "type": "string",
11068
+ "description": "careerId parameter"
11069
+ },
11070
+ "requestBody": {
11071
+ "title": "UpdateCareerRequestBody",
11072
+ "type": "object",
11073
+ "required": [
11074
+ "data"
11075
+ ],
11076
+ "properties": {
11077
+ "data": {
11078
+ "title": "UpdateCareerRequestBodyData",
11079
+ "type": "object",
11080
+ "required": [
11081
+ "type"
11082
+ ],
11083
+ "properties": {
11084
+ "type": {
11085
+ "type": "string",
11086
+ "enum": [
11087
+ "careers"
11088
+ ]
11089
+ },
11090
+ "id": {
11091
+ "type": "string"
11092
+ },
11093
+ "attributes": {
11094
+ "title": "UpdateCareerRequestBodyDataAttributes",
11095
+ "type": "object",
11096
+ "properties": {
11097
+ "name": {
11098
+ "type": "string",
11099
+ "minLength": 1,
11100
+ "maxLength": 255
11101
+ },
11102
+ "status": {
11103
+ "type": "string",
11104
+ "enum": [
11105
+ "draft",
11106
+ "active",
11107
+ "archived"
11108
+ ],
11109
+ "description": "active = publish (writes the CDN doc). archived = takedown (removes it; repeat to retry). Allowed transitions: draft->active, draft->archived, active->archived, archived->active."
11110
+ },
11111
+ "sourceLanguage": {
11112
+ "type": "string",
11113
+ "description": "BCP-47 tag."
11114
+ },
11115
+ "translate": {
11116
+ "type": "boolean",
11117
+ "description": "Write-only: async-fill missing locale entries of the draft from sourceLanguage."
11118
+ },
11119
+ "content": {
11120
+ "title": "CareersContentSchema",
11121
+ "type": "object",
11122
+ "description": "Ordered-blocks careers document. Locale keys are BCP-47 (en-US,\npl-PL, ...). Publish rules (mirrored by the editor): schemaVersion\n1; 1-24 blocks with unique ids; exactly one enabled hero (FIRST\namong enabled blocks) and one enabled positions; <=12 items per\nrepeater; every locale-map string of an ENABLED block non-empty for\nevery locale in `locales`; `locales` is a non-empty subset of the\ntenant's activeLanguages plus sourceLanguage and must contain\nsourceLanguage; absolute URLs only under the tenant's OWN CDN\nprefixes (tenants/{shortCode}/ or tenants/{tenantId}/); no < or >\nin text; <=131072 BYTES (UTF-8).",
11123
+ "properties": {
11124
+ "schemaVersion": {
11125
+ "type": "integer",
11126
+ "enum": [
11127
+ 1
11128
+ ]
11129
+ },
11130
+ "sourceLanguage": {
11131
+ "type": "string",
11132
+ "description": "BCP-47 tag."
11133
+ },
11134
+ "locales": {
11135
+ "type": "array",
11136
+ "items": {
11137
+ "type": "string"
11138
+ },
11139
+ "description": "The locales the page publishes in. The public language switcher offers exactly these."
11140
+ },
11141
+ "blocks": {
11142
+ "type": "array",
11143
+ "minItems": 1,
11144
+ "maxItems": 24,
11145
+ "items": {
11146
+ "title": "CareersBlockSchema",
11147
+ "type": "object",
11148
+ "description": "One page section. `data` is the block-type-specific payload: plain\nfields (icon names, urls) plus locale maps\n({\"en-US\": \"...\", \"pl-PL\": \"...\"}) for every visitor-facing string;\nrepeaters are arrays of such objects (<=12 items). The catalog is\nCLOSED - there is no free-form HTML block (XSS door on a public\npage).",
11149
+ "properties": {
11150
+ "id": {
11151
+ "type": "string",
11152
+ "maxLength": 64,
11153
+ "description": "Stable within the document; [A-Za-z0-9_-]."
11154
+ },
11155
+ "type": {
11156
+ "type": "string",
11157
+ "enum": [
11158
+ "hero",
11159
+ "stats",
11160
+ "positions",
11161
+ "features",
11162
+ "team",
11163
+ "testimonials",
11164
+ "faq",
11165
+ "gallery",
11166
+ "cta",
11167
+ "richText"
11168
+ ]
11169
+ },
11170
+ "enabled": {
11171
+ "type": "boolean",
11172
+ "description": "Disabled blocks stay in the draft (and keep translations) but never ship to the public doc and are locale-exempt at publish."
11173
+ },
11174
+ "data": {
11175
+ "type": "object",
11176
+ "additionalProperties": true
11177
+ }
11178
+ }
11179
+ }
11180
+ }
11181
+ }
11182
+ }
11183
+ }
11184
+ }
11185
+ }
11186
+ }
11187
+ }
11188
+ }
11189
+ },
11190
+ "required": [
11191
+ "careerId",
11192
+ "requestBody"
11193
+ ]
11194
+ },
11195
+ "_meta": {
11196
+ "method": "PATCH",
11197
+ "path": "/v1/careers/{careerId}",
11198
+ "operationId": "updateCareer"
11199
+ }
11200
+ },
11201
+ {
11202
+ "name": "delete_career",
11203
+ "description": "Delete Career",
11204
+ "inputSchema": {
11205
+ "type": "object",
11206
+ "properties": {
11207
+ "careerId": {
11208
+ "type": "string",
11209
+ "description": "careerId parameter"
11210
+ }
11211
+ },
11212
+ "required": [
11213
+ "careerId"
11214
+ ]
11215
+ },
11216
+ "_meta": {
11217
+ "method": "DELETE",
11218
+ "path": "/v1/careers/{careerId}",
11219
+ "operationId": "deleteCareer"
11220
+ }
11221
+ },
11222
+ {
11223
+ "name": "career_options",
11224
+ "description": "Career Options",
11225
+ "inputSchema": {
11226
+ "type": "object",
11227
+ "properties": {}
11228
+ },
11229
+ "_meta": {
11230
+ "method": "OPTIONS",
11231
+ "path": "/v1/careers/{careerId}",
11232
+ "operationId": "careerOptions"
11233
+ }
11234
+ },
10848
11235
  {
10849
11236
  "name": "list_schedules",
10850
11237
  "description": "List Schedules",
@@ -15493,6 +15880,10 @@
15493
15880
  "type": "integer",
15494
15881
  "description": "How many members actually fed the profile on this row (diagnostic; can be lower than memberCount)."
15495
15882
  },
15883
+ "provenCount": {
15884
+ "type": "integer",
15885
+ "description": "How many cohort members the hiring manager CONFIRMED at the\n90-day probation mark. \"3 hires, 2 proven\" is the number that\nturns the persona from \"whom we hired\" into \"who worked out\".\nCounted in code, never by a model."
15886
+ },
15496
15887
  "talentCount": {
15497
15888
  "type": "integer",
15498
15889
  "description": "Legacy mirror of memberCount."
@@ -15860,6 +16251,10 @@
15860
16251
  "type": "integer",
15861
16252
  "description": "How many members actually fed the profile on this row (diagnostic; can be lower than memberCount)."
15862
16253
  },
16254
+ "provenCount": {
16255
+ "type": "integer",
16256
+ "description": "How many cohort members the hiring manager CONFIRMED at the\n90-day probation mark. \"3 hires, 2 proven\" is the number that\nturns the persona from \"whom we hired\" into \"who worked out\".\nCounted in code, never by a model."
16257
+ },
15863
16258
  "talentCount": {
15864
16259
  "type": "integer",
15865
16260
  "description": "Legacy mirror of memberCount."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.8.6",
3
+ "version": "0.8.8",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",