@snokam/mcp-api 0.182.0 → 0.183.1
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/package.json +3 -3
- package/specs/production/sanity.json +35 -6
- package/specs/test/office.json +1 -1
- package/specs/test/accounting.json +0 -6054
- package/specs/test/blog.json +0 -1646
- package/specs/test/broker.json +0 -137
- package/specs/test/chatgpt.json +0 -1867
- package/specs/test/employees.json +0 -3396
- package/specs/test/events.json +0 -2792
- package/specs/test/notifications.json +0 -840
- package/specs/test/recruitment.json +0 -3948
- package/specs/test/sales.json +0 -5377
- package/specs/test/sanity.json +0 -61286
- package/specs/test/sync.json +0 -277
- package/specs/test/webshop.json +0 -651
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@snokam/mcp-api",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.183.1",
|
|
4
4
|
"description": "MCP server exposing Snokam backend APIs as tools for Claude Code and other MCP clients",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@azure/identity": "^4.13.1",
|
|
25
25
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
26
|
-
"zod": "^4.3
|
|
26
|
+
"zod": "^4.4.3"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@types/node": "^
|
|
29
|
+
"@types/node": "^26.1.1",
|
|
30
30
|
"typescript": "~6.0.2"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
@@ -5946,8 +5946,32 @@
|
|
|
5946
5946
|
],
|
|
5947
5947
|
"type": "object"
|
|
5948
5948
|
},
|
|
5949
|
+
"MuxMasterFile": {
|
|
5950
|
+
"properties": {
|
|
5951
|
+
"url": {
|
|
5952
|
+
"type": "string"
|
|
5953
|
+
},
|
|
5954
|
+
"status": {
|
|
5955
|
+
"type": "string"
|
|
5956
|
+
},
|
|
5957
|
+
"sanityType": {
|
|
5958
|
+
"type": "string",
|
|
5959
|
+
"enum": [
|
|
5960
|
+
"mux.masterFile"
|
|
5961
|
+
],
|
|
5962
|
+
"nullable": false
|
|
5963
|
+
}
|
|
5964
|
+
},
|
|
5965
|
+
"required": [
|
|
5966
|
+
"sanityType"
|
|
5967
|
+
],
|
|
5968
|
+
"type": "object"
|
|
5969
|
+
},
|
|
5949
5970
|
"MuxAssetData": {
|
|
5950
5971
|
"properties": {
|
|
5972
|
+
"master": {
|
|
5973
|
+
"$ref": "#/components/schemas/MuxMasterFile"
|
|
5974
|
+
},
|
|
5951
5975
|
"static_renditions": {
|
|
5952
5976
|
"$ref": "#/components/schemas/MuxStaticRenditions"
|
|
5953
5977
|
},
|
|
@@ -26997,7 +27021,7 @@
|
|
|
26997
27021
|
},
|
|
26998
27022
|
"unsupported_pixel_format": {
|
|
26999
27023
|
"type": "string",
|
|
27000
|
-
"description": "The video pixel format, as a string, returned by libav. Considered non-standard\nif not one of yuv420p or yuvj420p."
|
|
27024
|
+
"description": "The video pixel format, as a string, returned by libav. Considered non-standard\nif not one of yuv420p or yuvj420p. HEVC inputs additionally permit yuv420p10le."
|
|
27001
27025
|
},
|
|
27002
27026
|
"video_bitrate": {
|
|
27003
27027
|
"type": "string",
|
|
@@ -27009,7 +27033,7 @@
|
|
|
27009
27033
|
},
|
|
27010
27034
|
"video_codec": {
|
|
27011
27035
|
"type": "string",
|
|
27012
|
-
"description": "The video codec used on the input file. For example, the input file encoded with\n`
|
|
27036
|
+
"description": "The video codec used on the input file. For example, the input file encoded with\n`av1` video codec is non-standard and the value of this parameter is `av1`."
|
|
27013
27037
|
},
|
|
27014
27038
|
"video_edit_list": {
|
|
27015
27039
|
"type": "string",
|
|
@@ -27048,7 +27072,7 @@
|
|
|
27048
27072
|
],
|
|
27049
27073
|
"description": "- `public` playback IDs are accessible by constructing an HLS URL like\n `https://stream.mux.com/${PLAYBACK_ID}`\n\n- `signed` playback IDs should be used with tokens\n `https://stream.mux.com/${PLAYBACK_ID}?token={TOKEN}`. See\n [Secure video playback](https://docs.mux.com/guides/secure-video-playback) for\n details about creating tokens.\n\n- `drm` playback IDs are protected with DRM technologies.\n [See DRM documentation for more details](https://docs.mux.com/guides/protect-videos-with-drm)."
|
|
27050
27074
|
},
|
|
27051
|
-
"
|
|
27075
|
+
"PlaybackId": {
|
|
27052
27076
|
"properties": {
|
|
27053
27077
|
"id": {
|
|
27054
27078
|
"type": "string",
|
|
@@ -27229,6 +27253,11 @@
|
|
|
27229
27253
|
"type": "string",
|
|
27230
27254
|
"description": "Unique identifier for the Track"
|
|
27231
27255
|
},
|
|
27256
|
+
"auto_language_confidence": {
|
|
27257
|
+
"type": "number",
|
|
27258
|
+
"format": "double",
|
|
27259
|
+
"description": "The confidence value (0-1) of the determined language. This value only is\navailable when automatic language detection is utilized in generated subtitles."
|
|
27260
|
+
},
|
|
27232
27261
|
"closed_captions": {
|
|
27233
27262
|
"type": "boolean",
|
|
27234
27263
|
"description": "Indicates the track provides Subtitles for the Deaf or Hard-of-hearing (SDH).\nThis parameter is only set tracks where `type` is `text` and `text_type` is\n`subtitles`."
|
|
@@ -27240,7 +27269,7 @@
|
|
|
27240
27269
|
},
|
|
27241
27270
|
"language_code": {
|
|
27242
27271
|
"type": "string",
|
|
27243
|
-
"description": "The language code value represents [BCP 47](https://tools.ietf.org/html/bcp47)\nspecification compliant value. For example, `en` for English or
|
|
27272
|
+
"description": "The language code value represents [BCP 47](https://tools.ietf.org/html/bcp47)\nspecification compliant value, or 'auto'. For example, `en` for English or\n`en-US` for the US version of English. This parameter is only set for `text` and\n`audio` track types. During automatic language detection for generated\nsubtitles, this value will be set to `auto` until the language is determined."
|
|
27244
27273
|
},
|
|
27245
27274
|
"max_channel_layout": {
|
|
27246
27275
|
"type": "string",
|
|
@@ -27453,7 +27482,7 @@
|
|
|
27453
27482
|
},
|
|
27454
27483
|
"playback_ids": {
|
|
27455
27484
|
"items": {
|
|
27456
|
-
"$ref": "#/components/schemas/
|
|
27485
|
+
"$ref": "#/components/schemas/PlaybackId"
|
|
27457
27486
|
},
|
|
27458
27487
|
"type": "array",
|
|
27459
27488
|
"description": "An array of Playback ID objects. Use these to create HLS playback URLs. See\n[Play your videos](https://docs.mux.com/guides/play-your-videos) for more\ndetails."
|
|
@@ -36654,7 +36683,7 @@
|
|
|
36654
36683
|
"additionalProperties": true
|
|
36655
36684
|
},
|
|
36656
36685
|
"File": {
|
|
36657
|
-
"description": "The **`File`** interface provides information about files and allows JavaScript in a web page to access their content.\n\n[MDN Reference](https://developer.mozilla.org/docs/Web/API/File)
|
|
36686
|
+
"description": "The **`File`** interface provides information about files and allows JavaScript in a web page to access their content.\n\n[MDN Reference](https://developer.mozilla.org/docs/Web/API/File)",
|
|
36658
36687
|
"properties": {},
|
|
36659
36688
|
"type": "object",
|
|
36660
36689
|
"additionalProperties": true
|