@mixio-pro/kalaasetu-mcp 2.3.25 → 2.3.27

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": "@mixio-pro/kalaasetu-mcp",
3
- "version": "2.3.25",
3
+ "version": "2.3.27",
4
4
  "description": "A powerful Model Context Protocol server providing AI tools for content generation and analysis",
5
5
  "type": "module",
6
6
  "module": "src/index.ts",
@@ -170,7 +170,7 @@ export const generateImage = {
170
170
 
171
171
  const numRefImages = args.reference_images?.length || 0;
172
172
  const MODELS =
173
- numRefImages >= 3
173
+ numRefImages >= 2
174
174
  ? [
175
175
  "gemini-3-pro-image-preview",
176
176
  "gemini-3.1-flash-image-preview",
@@ -110,13 +110,6 @@ export const imageToVideo = {
110
110
  "(e.g., 'scenes/intro/robot_walking.mp4'). " +
111
111
  "If omitted, a timestamped filename is generated automatically.",
112
112
  ),
113
- model_id: z
114
- .string()
115
- .optional()
116
- .default("veo-3.1-fast-generate-001")
117
- .describe(
118
- "Specific Vertex Veo model ID to use. Default Value is veo-3.1-fast-generate-001",
119
- ),
120
113
  generate_audio: z
121
114
  .boolean()
122
115
  .optional()
@@ -168,7 +161,7 @@ export const imageToVideo = {
168
161
  async () => {
169
162
  const projectId = "mixio-pro";
170
163
  const location = "us-central1";
171
- const modelId = args.model_id || "veo-3.1-fast-generate-preview";
164
+ const modelId = "veo-3.1-lite-generate-001";
172
165
 
173
166
  // Validate and parse duration_seconds - snap to nearest 4, 6, or 8
174
167
  let durationSeconds = parseInt(args.duration_seconds || "6");