@vibeframe/mcp-server 0.80.1 → 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.
Files changed (2) hide show
  1. package/dist/index.js +17 -9
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -14099,7 +14099,11 @@ var init_api_keys = __esm({
14099
14099
  showInSetup: true,
14100
14100
  setupDescription: "Seedance 2.0 video gen ($$, default since v0.57)",
14101
14101
  envExampleComment: "fal.ai API Key (Seedance 2.0 video \u2014 default text/image-to-video since v0.57, Artificial Analysis ELO #2)",
14102
- 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>" }
14103
14107
  });
14104
14108
  defineApiKey({
14105
14109
  configKey: "xai",
@@ -14160,6 +14164,10 @@ var init_api_keys = __esm({
14160
14164
  // not prompted in setup wizard — internal upload host
14161
14165
  envExampleComment: "ImgBB API Key (image hosting \u2014 used by Kling and Seedance for image-to-video uploads)",
14162
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" },
14163
14171
  // ImgBB has no provider class (envvar-only); doctor still shows what it
14164
14172
  // unlocks at the apiKey level.
14165
14173
  commandsUnlocked: [
@@ -464003,7 +464011,7 @@ var editTools = [
464003
464011
  editFillGapsTool
464004
464012
  ];
464005
464013
 
464006
- // ../cli/src/tools/manifest/analyze.ts
464014
+ // ../cli/src/tools/manifest/inspect.ts
464007
464015
  import { z as z4 } from "zod";
464008
464016
  init_ai_analyze();
464009
464017
  init_ai_review();
@@ -464047,7 +464055,7 @@ async function executeSuggestEdit(options) {
464047
464055
  }
464048
464056
  }
464049
464057
 
464050
- // ../cli/src/tools/manifest/analyze.ts
464058
+ // ../cli/src/tools/manifest/inspect.ts
464051
464059
  var analyzeMediaTool = defineTool({
464052
464060
  name: "inspect_media",
464053
464061
  category: "analyze",
@@ -464164,7 +464172,7 @@ var analyzeSuggestTool = defineTool({
464164
464172
  };
464165
464173
  }
464166
464174
  });
464167
- var analyzeTools = [
464175
+ var inspectTools = [
464168
464176
  analyzeMediaTool,
464169
464177
  analyzeVideoTool,
464170
464178
  analyzeReviewTool,
@@ -464491,7 +464499,7 @@ var generateTools = [
464491
464499
  generateVideoExtendTool
464492
464500
  ];
464493
464501
 
464494
- // ../cli/src/tools/manifest/pipeline.ts
464502
+ // ../cli/src/tools/manifest/remix.ts
464495
464503
  import { writeFile as writeFile38 } from "node:fs/promises";
464496
464504
  import { tmpdir as tmpdir5 } from "node:os";
464497
464505
  import { join as join30 } from "node:path";
@@ -465449,7 +465457,7 @@ async function executePipeline(manifest2, options = {}) {
465449
465457
  };
465450
465458
  }
465451
465459
 
465452
- // ../cli/src/tools/manifest/pipeline.ts
465460
+ // ../cli/src/tools/manifest/remix.ts
465453
465461
  var pipelineHighlightsTool = defineTool({
465454
465462
  name: "remix_highlights",
465455
465463
  category: "pipeline",
@@ -465626,7 +465634,7 @@ var pipelineRegenerateSceneTool = defineTool({
465626
465634
  };
465627
465635
  }
465628
465636
  });
465629
- var pipelineTools = [
465637
+ var remixTools = [
465630
465638
  pipelineHighlightsTool,
465631
465639
  pipelineAutoShortsTool,
465632
465640
  pipelineRunTool,
@@ -468189,9 +468197,9 @@ var manifest = [
468189
468197
  ...sceneTools,
468190
468198
  ...audioTools,
468191
468199
  ...editTools,
468192
- ...analyzeTools,
468200
+ ...inspectTools,
468193
468201
  ...generateTools,
468194
- ...pipelineTools,
468202
+ ...remixTools,
468195
468203
  ...detectTools,
468196
468204
  ...timelineTools,
468197
468205
  ...projectTools,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibeframe/mcp-server",
3
- "version": "0.80.1",
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.80.1",
61
- "@vibeframe/core": "0.80.1"
60
+ "@vibeframe/cli": "0.81.0",
61
+ "@vibeframe/core": "0.81.0"
62
62
  },
63
63
  "engines": {
64
64
  "node": ">=20"