@smartytalent/mcp-tools 0.1.33-dev.48 → 0.1.33-dev.49
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 +134 -1
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -6035,6 +6035,57 @@
|
|
|
6035
6035
|
"type": {
|
|
6036
6036
|
"type": "string"
|
|
6037
6037
|
},
|
|
6038
|
+
"kind": {
|
|
6039
|
+
"type": "string",
|
|
6040
|
+
"enum": [
|
|
6041
|
+
"image",
|
|
6042
|
+
"pdf",
|
|
6043
|
+
"video",
|
|
6044
|
+
"audio",
|
|
6045
|
+
"text",
|
|
6046
|
+
"unknown"
|
|
6047
|
+
],
|
|
6048
|
+
"description": "Renderer hint derived from contentType + conversion outputs.\nSet by the file service after conversion. `unknown` for\ncontent types with no preview pipeline."
|
|
6049
|
+
},
|
|
6050
|
+
"sizeBytes": {
|
|
6051
|
+
"type": "integer",
|
|
6052
|
+
"description": "File size in bytes. Stable post-upload."
|
|
6053
|
+
},
|
|
6054
|
+
"durationSeconds": {
|
|
6055
|
+
"type": "number",
|
|
6056
|
+
"description": "Duration of media files (video/audio) in seconds. Set by ffmpeg conversion. Null for non-media."
|
|
6057
|
+
},
|
|
6058
|
+
"pages": {
|
|
6059
|
+
"type": "array",
|
|
6060
|
+
"description": "Per-page metadata for paginated content (PDFs converted to\nPNGs by Poppler, multi-page images). Stable structure - page\ndimensions don't change request-to-request. The presigned\nURL for each page render lives at\n`meta.previewUrls.pages[i]`, indexed by the same position.\nNull for non-paginated content (video, audio, single text).",
|
|
6061
|
+
"items": {
|
|
6062
|
+
"type": "object",
|
|
6063
|
+
"properties": {
|
|
6064
|
+
"page": {
|
|
6065
|
+
"type": "integer",
|
|
6066
|
+
"description": "1-indexed page number."
|
|
6067
|
+
},
|
|
6068
|
+
"width": {
|
|
6069
|
+
"type": "integer",
|
|
6070
|
+
"description": "Pixel width of the rendered page image."
|
|
6071
|
+
},
|
|
6072
|
+
"height": {
|
|
6073
|
+
"type": "integer",
|
|
6074
|
+
"description": "Pixel height of the rendered page image."
|
|
6075
|
+
}
|
|
6076
|
+
}
|
|
6077
|
+
}
|
|
6078
|
+
},
|
|
6079
|
+
"transcript": {
|
|
6080
|
+
"type": "object",
|
|
6081
|
+
"additionalProperties": true,
|
|
6082
|
+
"description": "Multilingual transcript of media content. Locale-keyed\n(e.g. {\"en-US\": \"...\", \"pl-PL\": \"...\"}). Set by ffmpeg\nextraction + downstream AI translation. Null for\nnon-media content."
|
|
6083
|
+
},
|
|
6084
|
+
"summary": {
|
|
6085
|
+
"type": "object",
|
|
6086
|
+
"additionalProperties": true,
|
|
6087
|
+
"description": "Multilingual AI-generated summary. Same shape as transcript.\nUseful for recruiter-side scan UIs that don't want to play\nback the full media."
|
|
6088
|
+
},
|
|
6038
6089
|
"timestamps": {
|
|
6039
6090
|
"title": "ResourceTimestampsSchema",
|
|
6040
6091
|
"type": "object",
|
|
@@ -6172,6 +6223,57 @@
|
|
|
6172
6223
|
"type": {
|
|
6173
6224
|
"type": "string"
|
|
6174
6225
|
},
|
|
6226
|
+
"kind": {
|
|
6227
|
+
"type": "string",
|
|
6228
|
+
"enum": [
|
|
6229
|
+
"image",
|
|
6230
|
+
"pdf",
|
|
6231
|
+
"video",
|
|
6232
|
+
"audio",
|
|
6233
|
+
"text",
|
|
6234
|
+
"unknown"
|
|
6235
|
+
],
|
|
6236
|
+
"description": "Renderer hint derived from contentType + conversion outputs.\nSet by the file service after conversion. `unknown` for\ncontent types with no preview pipeline."
|
|
6237
|
+
},
|
|
6238
|
+
"sizeBytes": {
|
|
6239
|
+
"type": "integer",
|
|
6240
|
+
"description": "File size in bytes. Stable post-upload."
|
|
6241
|
+
},
|
|
6242
|
+
"durationSeconds": {
|
|
6243
|
+
"type": "number",
|
|
6244
|
+
"description": "Duration of media files (video/audio) in seconds. Set by ffmpeg conversion. Null for non-media."
|
|
6245
|
+
},
|
|
6246
|
+
"pages": {
|
|
6247
|
+
"type": "array",
|
|
6248
|
+
"description": "Per-page metadata for paginated content (PDFs converted to\nPNGs by Poppler, multi-page images). Stable structure - page\ndimensions don't change request-to-request. The presigned\nURL for each page render lives at\n`meta.previewUrls.pages[i]`, indexed by the same position.\nNull for non-paginated content (video, audio, single text).",
|
|
6249
|
+
"items": {
|
|
6250
|
+
"type": "object",
|
|
6251
|
+
"properties": {
|
|
6252
|
+
"page": {
|
|
6253
|
+
"type": "integer",
|
|
6254
|
+
"description": "1-indexed page number."
|
|
6255
|
+
},
|
|
6256
|
+
"width": {
|
|
6257
|
+
"type": "integer",
|
|
6258
|
+
"description": "Pixel width of the rendered page image."
|
|
6259
|
+
},
|
|
6260
|
+
"height": {
|
|
6261
|
+
"type": "integer",
|
|
6262
|
+
"description": "Pixel height of the rendered page image."
|
|
6263
|
+
}
|
|
6264
|
+
}
|
|
6265
|
+
}
|
|
6266
|
+
},
|
|
6267
|
+
"transcript": {
|
|
6268
|
+
"type": "object",
|
|
6269
|
+
"additionalProperties": true,
|
|
6270
|
+
"description": "Multilingual transcript of media content. Locale-keyed\n(e.g. {\"en-US\": \"...\", \"pl-PL\": \"...\"}). Set by ffmpeg\nextraction + downstream AI translation. Null for\nnon-media content."
|
|
6271
|
+
},
|
|
6272
|
+
"summary": {
|
|
6273
|
+
"type": "object",
|
|
6274
|
+
"additionalProperties": true,
|
|
6275
|
+
"description": "Multilingual AI-generated summary. Same shape as transcript.\nUseful for recruiter-side scan UIs that don't want to play\nback the full media."
|
|
6276
|
+
},
|
|
6175
6277
|
"timestamps": {
|
|
6176
6278
|
"title": "ResourceTimestampsSchema",
|
|
6177
6279
|
"type": "object",
|
|
@@ -17366,6 +17468,28 @@
|
|
|
17366
17468
|
}
|
|
17367
17469
|
},
|
|
17368
17470
|
"description": "Generated PDF report for this attempt's evaluation. Populated post-evaluation."
|
|
17471
|
+
},
|
|
17472
|
+
"files": {
|
|
17473
|
+
"title": "AttemptRelationshipsFilesSchema",
|
|
17474
|
+
"type": "object",
|
|
17475
|
+
"description": "FileResources attached to this attempt - one per file the\ncandidate uploaded as a `file-upload` or `video-recording`\nanswer. Populated by the workflow's `trigger_evaluation`\nstep after `process_attachments` registers each file with\nthe file service. Use `?include=files` on `showAttempt` /\n`showGuestAttempt` to sideload the FileResources in\n`included[]` (single round-trip preview).\nThe answer-to-file mapping lives on `FileResource.meta.questionId`\n(set at `file:process` time), not on AnswerFileSchema -\nrelated-resource IDs in attributes would violate JSON:API.",
|
|
17476
|
+
"properties": {
|
|
17477
|
+
"data": {
|
|
17478
|
+
"type": "array",
|
|
17479
|
+
"items": {
|
|
17480
|
+
"title": "AttemptRelationshipsFilesDataSchema",
|
|
17481
|
+
"type": "object",
|
|
17482
|
+
"properties": {
|
|
17483
|
+
"type": {
|
|
17484
|
+
"type": "string"
|
|
17485
|
+
},
|
|
17486
|
+
"id": {
|
|
17487
|
+
"type": "string"
|
|
17488
|
+
}
|
|
17489
|
+
}
|
|
17490
|
+
}
|
|
17491
|
+
}
|
|
17492
|
+
}
|
|
17369
17493
|
}
|
|
17370
17494
|
}
|
|
17371
17495
|
}
|
|
@@ -17464,7 +17588,12 @@
|
|
|
17464
17588
|
"description": "Show Attempt",
|
|
17465
17589
|
"inputSchema": {
|
|
17466
17590
|
"type": "object",
|
|
17467
|
-
"properties": {
|
|
17591
|
+
"properties": {
|
|
17592
|
+
"include": {
|
|
17593
|
+
"type": "string",
|
|
17594
|
+
"description": "Comma-separated list of relationships to sideload. Currently\nsupports `files`. Sideloaded resources land in `included[]`.\nOmit (or pass empty) for a relationships-only response."
|
|
17595
|
+
}
|
|
17596
|
+
}
|
|
17468
17597
|
},
|
|
17469
17598
|
"_meta": {
|
|
17470
17599
|
"method": "GET",
|
|
@@ -18003,6 +18132,10 @@
|
|
|
18003
18132
|
"token": {
|
|
18004
18133
|
"type": "string",
|
|
18005
18134
|
"description": "token parameter"
|
|
18135
|
+
},
|
|
18136
|
+
"include": {
|
|
18137
|
+
"type": "string",
|
|
18138
|
+
"description": "Comma-separated list of relationships to sideload. Currently\nsupports `files`. Sideloaded resources land in `included[]`."
|
|
18006
18139
|
}
|
|
18007
18140
|
},
|
|
18008
18141
|
"required": [
|