@vibeframe/mcp-server 0.57.0 → 0.57.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 +5 -3
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -455469,7 +455469,7 @@ Examples:
|
|
|
455469
455469
|
validateOutputPath(options.output);
|
|
455470
455470
|
}
|
|
455471
455471
|
let provider = options.provider.toLowerCase();
|
|
455472
|
-
const validProviders = ["runway", "kling", "veo", "grok"];
|
|
455472
|
+
const validProviders = ["runway", "kling", "veo", "grok", "fal"];
|
|
455473
455473
|
if (!validProviders.includes(provider)) {
|
|
455474
455474
|
exitWithError(usageError(`Invalid provider: ${provider}`, `Available providers: ${validProviders.join(", ")}`));
|
|
455475
455475
|
}
|
|
@@ -455533,13 +455533,15 @@ Examples:
|
|
|
455533
455533
|
runway: "RUNWAY_API_SECRET",
|
|
455534
455534
|
kling: "KLING_API_KEY",
|
|
455535
455535
|
veo: "GOOGLE_API_KEY",
|
|
455536
|
-
grok: "XAI_API_KEY"
|
|
455536
|
+
grok: "XAI_API_KEY",
|
|
455537
|
+
fal: "FAL_KEY"
|
|
455537
455538
|
};
|
|
455538
455539
|
const providerNameMap = {
|
|
455539
455540
|
runway: "Runway",
|
|
455540
455541
|
kling: "Kling",
|
|
455541
455542
|
veo: "Veo",
|
|
455542
|
-
grok: "Grok"
|
|
455543
|
+
grok: "Grok",
|
|
455544
|
+
fal: "fal.ai (Seedance 2.0)"
|
|
455543
455545
|
};
|
|
455544
455546
|
const envKey = envKeyMap[provider];
|
|
455545
455547
|
const providerName = providerNameMap[provider];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibeframe/mcp-server",
|
|
3
|
-
"version": "0.57.
|
|
3
|
+
"version": "0.57.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.57.1",
|
|
61
|
+
"@vibeframe/core": "0.57.1"
|
|
62
62
|
},
|
|
63
63
|
"engines": {
|
|
64
64
|
"node": ">=20"
|