@vibeframe/mcp-server 0.93.0 → 0.94.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/dist/index.js +1 -4
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -14107,7 +14107,6 @@ var init_api_keys = __esm({
|
|
|
14107
14107
|
defineApiKey({
|
|
14108
14108
|
configKey: "fal",
|
|
14109
14109
|
envVar: "FAL_API_KEY",
|
|
14110
|
-
envAliases: ["FAL_KEY"],
|
|
14111
14110
|
label: "fal.ai",
|
|
14112
14111
|
showInSetup: true,
|
|
14113
14112
|
setupDescription: "Seedance 2.0 video gen ($$, default since v0.57)",
|
|
@@ -25743,7 +25742,6 @@ var init_api_key = __esm({
|
|
|
25743
25742
|
XAI_API_KEY: "xai",
|
|
25744
25743
|
ELEVENLABS_API_KEY: "elevenlabs",
|
|
25745
25744
|
FAL_API_KEY: "fal",
|
|
25746
|
-
FAL_KEY: "fal",
|
|
25747
25745
|
RUNWAY_API_SECRET: "runway",
|
|
25748
25746
|
KLING_API_KEY: "kling",
|
|
25749
25747
|
OPENROUTER_API_KEY: "openrouter",
|
|
@@ -25757,7 +25755,6 @@ var init_api_key = __esm({
|
|
|
25757
25755
|
XAI_API_KEY: "https://console.x.ai",
|
|
25758
25756
|
ELEVENLABS_API_KEY: "https://elevenlabs.io/app/settings/api-keys",
|
|
25759
25757
|
FAL_API_KEY: "https://fal.ai/dashboard/keys",
|
|
25760
|
-
FAL_KEY: "https://fal.ai/dashboard/keys",
|
|
25761
25758
|
RUNWAY_API_SECRET: "https://app.runwayml.com/settings/api-keys",
|
|
25762
25759
|
KLING_API_KEY: "https://klingai.com/dev",
|
|
25763
25760
|
REPLICATE_API_TOKEN: "https://replicate.com/account/api-tokens",
|
|
@@ -460266,7 +460263,7 @@ async function executeVideoGenerate(options) {
|
|
|
460266
460263
|
fal: "FAL_API_KEY"
|
|
460267
460264
|
};
|
|
460268
460265
|
const envKey = envKeyMap[provider] || "";
|
|
460269
|
-
const key2 = apiKey || (hasApiKey(envKey) ? process.env[envKey]
|
|
460266
|
+
const key2 = apiKey || (hasApiKey(envKey) ? process.env[envKey] : void 0);
|
|
460270
460267
|
if (!key2) return { success: false, error: `${envKeyMap[provider]} required for ${provider}` };
|
|
460271
460268
|
let referenceImage;
|
|
460272
460269
|
let referenceImageBuffer;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibeframe/mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.94.1",
|
|
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/
|
|
61
|
-
"@vibeframe/
|
|
60
|
+
"@vibeframe/cli": "0.94.1",
|
|
61
|
+
"@vibeframe/core": "0.94.1"
|
|
62
62
|
},
|
|
63
63
|
"engines": {
|
|
64
64
|
"node": ">=20"
|