@vibeframe/mcp-server 0.80.0 → 0.81.0
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/index.js +27 -10
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -14025,7 +14025,8 @@ function getSetupProviders() {
|
|
|
14025
14025
|
key: k.configKey,
|
|
14026
14026
|
name: k.label,
|
|
14027
14027
|
env: k.envVar,
|
|
14028
|
-
desc: k.setupDescription ?? ""
|
|
14028
|
+
desc: k.setupDescription ?? "",
|
|
14029
|
+
url: k.envExampleUrl
|
|
14029
14030
|
}));
|
|
14030
14031
|
}
|
|
14031
14032
|
function getAllApiKeys() {
|
|
@@ -14098,7 +14099,11 @@ var init_api_keys = __esm({
|
|
|
14098
14099
|
showInSetup: true,
|
|
14099
14100
|
setupDescription: "Seedance 2.0 video gen ($$, default since v0.57)",
|
|
14100
14101
|
envExampleComment: "fal.ai API Key (Seedance 2.0 video \u2014 default text/image-to-video since v0.57, Artificial Analysis ELO #2)",
|
|
14101
|
-
envExampleUrl: "https://fal.ai/dashboard/keys"
|
|
14102
|
+
envExampleUrl: "https://fal.ai/dashboard/keys",
|
|
14103
|
+
// fal keys are `<key-id>:<key-secret>` (both UUIDs). The colon is the
|
|
14104
|
+
// structural marker — same approach as Kling. Don't pin the UUID shape
|
|
14105
|
+
// since fal could rotate to a different secret format.
|
|
14106
|
+
keyFormat: { prefix: /:/, example: "<key-id>:<key-secret>" }
|
|
14102
14107
|
});
|
|
14103
14108
|
defineApiKey({
|
|
14104
14109
|
configKey: "xai",
|
|
@@ -14159,6 +14164,10 @@ var init_api_keys = __esm({
|
|
|
14159
14164
|
// not prompted in setup wizard — internal upload host
|
|
14160
14165
|
envExampleComment: "ImgBB API Key (image hosting \u2014 used by Kling and Seedance for image-to-video uploads)",
|
|
14161
14166
|
envExampleUrl: "https://api.imgbb.com/",
|
|
14167
|
+
// ImgBB issues 32-character lowercase hex keys. Soft-warn if a pasted
|
|
14168
|
+
// key doesn't match — covers the common "I copied my Kling key by
|
|
14169
|
+
// mistake" failure mode.
|
|
14170
|
+
keyFormat: { prefix: /^[a-f0-9]{32}$/, example: "32-char hex" },
|
|
14162
14171
|
// ImgBB has no provider class (envvar-only); doctor still shows what it
|
|
14163
14172
|
// unlocks at the apiKey level.
|
|
14164
14173
|
commandsUnlocked: [
|
|
@@ -456470,6 +456479,13 @@ var init_storyboard = __esm({
|
|
|
456470
456479
|
}
|
|
456471
456480
|
});
|
|
456472
456481
|
|
|
456482
|
+
// ../cli/src/utils/open-url.ts
|
|
456483
|
+
var init_open_url = __esm({
|
|
456484
|
+
"../cli/src/utils/open-url.ts"() {
|
|
456485
|
+
"use strict";
|
|
456486
|
+
}
|
|
456487
|
+
});
|
|
456488
|
+
|
|
456473
456489
|
// ../cli/src/utils/tty.ts
|
|
456474
456490
|
import { createInterface as createInterface4 } from "node:readline";
|
|
456475
456491
|
import { ReadStream } from "node:tty";
|
|
@@ -456521,6 +456537,7 @@ var ttyStream;
|
|
|
456521
456537
|
var init_tty = __esm({
|
|
456522
456538
|
"../cli/src/utils/tty.ts"() {
|
|
456523
456539
|
"use strict";
|
|
456540
|
+
init_open_url();
|
|
456524
456541
|
ttyStream = null;
|
|
456525
456542
|
}
|
|
456526
456543
|
});
|
|
@@ -463994,7 +464011,7 @@ var editTools = [
|
|
|
463994
464011
|
editFillGapsTool
|
|
463995
464012
|
];
|
|
463996
464013
|
|
|
463997
|
-
// ../cli/src/tools/manifest/
|
|
464014
|
+
// ../cli/src/tools/manifest/inspect.ts
|
|
463998
464015
|
import { z as z4 } from "zod";
|
|
463999
464016
|
init_ai_analyze();
|
|
464000
464017
|
init_ai_review();
|
|
@@ -464038,7 +464055,7 @@ async function executeSuggestEdit(options) {
|
|
|
464038
464055
|
}
|
|
464039
464056
|
}
|
|
464040
464057
|
|
|
464041
|
-
// ../cli/src/tools/manifest/
|
|
464058
|
+
// ../cli/src/tools/manifest/inspect.ts
|
|
464042
464059
|
var analyzeMediaTool = defineTool({
|
|
464043
464060
|
name: "inspect_media",
|
|
464044
464061
|
category: "analyze",
|
|
@@ -464155,7 +464172,7 @@ var analyzeSuggestTool = defineTool({
|
|
|
464155
464172
|
};
|
|
464156
464173
|
}
|
|
464157
464174
|
});
|
|
464158
|
-
var
|
|
464175
|
+
var inspectTools = [
|
|
464159
464176
|
analyzeMediaTool,
|
|
464160
464177
|
analyzeVideoTool,
|
|
464161
464178
|
analyzeReviewTool,
|
|
@@ -464482,7 +464499,7 @@ var generateTools = [
|
|
|
464482
464499
|
generateVideoExtendTool
|
|
464483
464500
|
];
|
|
464484
464501
|
|
|
464485
|
-
// ../cli/src/tools/manifest/
|
|
464502
|
+
// ../cli/src/tools/manifest/remix.ts
|
|
464486
464503
|
import { writeFile as writeFile38 } from "node:fs/promises";
|
|
464487
464504
|
import { tmpdir as tmpdir5 } from "node:os";
|
|
464488
464505
|
import { join as join30 } from "node:path";
|
|
@@ -465440,7 +465457,7 @@ async function executePipeline(manifest2, options = {}) {
|
|
|
465440
465457
|
};
|
|
465441
465458
|
}
|
|
465442
465459
|
|
|
465443
|
-
// ../cli/src/tools/manifest/
|
|
465460
|
+
// ../cli/src/tools/manifest/remix.ts
|
|
465444
465461
|
var pipelineHighlightsTool = defineTool({
|
|
465445
465462
|
name: "remix_highlights",
|
|
465446
465463
|
category: "pipeline",
|
|
@@ -465617,7 +465634,7 @@ var pipelineRegenerateSceneTool = defineTool({
|
|
|
465617
465634
|
};
|
|
465618
465635
|
}
|
|
465619
465636
|
});
|
|
465620
|
-
var
|
|
465637
|
+
var remixTools = [
|
|
465621
465638
|
pipelineHighlightsTool,
|
|
465622
465639
|
pipelineAutoShortsTool,
|
|
465623
465640
|
pipelineRunTool,
|
|
@@ -468180,9 +468197,9 @@ var manifest = [
|
|
|
468180
468197
|
...sceneTools,
|
|
468181
468198
|
...audioTools,
|
|
468182
468199
|
...editTools,
|
|
468183
|
-
...
|
|
468200
|
+
...inspectTools,
|
|
468184
468201
|
...generateTools,
|
|
468185
|
-
...
|
|
468202
|
+
...remixTools,
|
|
468186
468203
|
...detectTools,
|
|
468187
468204
|
...timelineTools,
|
|
468188
468205
|
...projectTools,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibeframe/mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.81.0",
|
|
4
4
|
"description": "VibeFrame MCP Server - AI-native video editing via Model Context Protocol",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"tsx": "^4.21.0",
|
|
58
58
|
"typescript": "^5.3.3",
|
|
59
59
|
"vitest": "^1.2.2",
|
|
60
|
-
"@vibeframe/cli": "0.
|
|
61
|
-
"@vibeframe/core": "0.
|
|
60
|
+
"@vibeframe/cli": "0.81.0",
|
|
61
|
+
"@vibeframe/core": "0.81.0"
|
|
62
62
|
},
|
|
63
63
|
"engines": {
|
|
64
64
|
"node": ">=20"
|