@kolbo/mcp 1.87.6 → 1.87.7
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolbo/mcp",
|
|
3
|
-
"version": "1.87.
|
|
3
|
+
"version": "1.87.7",
|
|
4
4
|
"description": "Kolbo AI MCP Server - Generate images, videos, music, speech, and sound effects from Claude Code",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"test:blender": "node --test test/blender-tools.test.js",
|
|
21
21
|
"generate-chatgpt-submission": "node scripts/generate-chatgpt-submission.js",
|
|
22
22
|
"check-install": "node scripts/check-install.js",
|
|
23
|
-
"check-doctrine-parity": "node scripts/check-doctrine-parity.js"
|
|
23
|
+
"check-doctrine-parity": "node scripts/check-doctrine-parity.js",
|
|
24
|
+
"gallery": "node scripts/widget-gallery.js --serve"
|
|
24
25
|
},
|
|
25
26
|
"keywords": [
|
|
26
27
|
"kolbo",
|
|
@@ -266,7 +266,13 @@ function displayKind(sc) {
|
|
|
266
266
|
if (/\\.(mp3|wav|m4a|aac|ogg|flac)$/.test(first)) return 'audio';
|
|
267
267
|
var kind = sc.kind;
|
|
268
268
|
if (kind === 'video' || kind === 'scenes' || kind === 'audio' || kind === '3d' || kind === 'model3d') {
|
|
269
|
-
|
|
269
|
+
if (kind !== 'scenes') return kind;
|
|
270
|
+
// A finished prompts[] batch is kind:'scenes' whatever it generated, so an
|
|
271
|
+
// image batch wore a "video" chip. Read the media the scenes actually hold.
|
|
272
|
+
var s0 = sc.scenes && sc.scenes[0];
|
|
273
|
+
if (s0 && s0.video_urls && s0.video_urls.length) return 'video';
|
|
274
|
+
if (s0 && s0.image_urls && s0.image_urls.length) return 'image';
|
|
275
|
+
return 'video';
|
|
270
276
|
}
|
|
271
277
|
var tool = sc.tool || '';
|
|
272
278
|
if (/video|elements|lipsync|first_last_frame/.test(tool)) return 'video';
|