aimakeall-mcp 0.4.2 → 0.4.3

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/README.md CHANGED
@@ -16,7 +16,7 @@ Claude Code·Codex 같은 MCP 클라이언트에서 자연어로 AImakeAll 영
16
16
  "mcpServers": {
17
17
  "aimakeall": {
18
18
  "command": "npx",
19
- "args": ["-y", "aimakeall-mcp@0.4.2"],
19
+ "args": ["-y", "aimakeall-mcp@0.4.3"],
20
20
  "env": { "AIMAKEALL_PAT": "aio_pat_..." }
21
21
  }
22
22
  }
@@ -318,7 +318,7 @@ export function registerCloudTools(server, config, api) {
318
318
  {
319
319
  prompt: z.string().describe("이미지 프롬프트 (plan 결과의 imagePrompt)"),
320
320
  aspectRatio: z.string().optional().describe("기본 9:16"),
321
- model: z.string().optional().describe("기본 gpt-image-2-beta (대안: gemini-3.1-flash-image-preview, doubao-seedream-5.0-lite)"),
321
+ model: z.enum(["gpt-image-2-beta", "gemini-3.1-flash-image-preview", "doubao-seedream-5.0-lite", "google-flow-nano-banana-pro", "kie-grok-imagine-image"]).optional().describe("이미지 모델, 기본 gpt-image-2-beta"),
322
322
  resolution: z.string().optional().describe("기본 1K"),
323
323
  referenceImageUrls: z.array(z.string()).max(6).optional().describe("참조 이미지 URL (씬1 앵커 등)"),
324
324
  referenceImagePaths: z.array(z.string()).max(4).optional().describe("참조 이미지 로컬 경로 (제품 사진 등)"),
@@ -417,7 +417,7 @@ export function registerCloudTools(server, config, api) {
417
417
  sceneImageUrl: z.string().optional().describe("씬 이미지 URL (i2v 입력)"),
418
418
  aspectRatio: z.string().optional().describe("기본 9:16"),
419
419
  durationSec: z.number().optional().describe("기본 8 (모델 상한으로 클램프됨)"),
420
- modelId: z.string().optional().describe("기본 kie-grok-imagine (대안: seedance-2.0, kling-3.0)"),
420
+ modelId: z.enum(["kie-grok-imagine", "seedance-2.0", "seedance-2.0-mini", "kling-3.0"]).optional().describe("i2v 영상 모델, 기본 kie-grok-imagine"),
421
421
  quality: z.string().optional().describe("기본 720p"),
422
422
  },
423
423
  wrapCloudHandler(config, async ({ prompt, sceneImageUrl = "", aspectRatio = "9:16", durationSec = 8, modelId = "kie-grok-imagine", quality = "720p" }) => {
package/lib/config.mjs CHANGED
@@ -2,7 +2,7 @@ import { homedir } from "node:os";
2
2
  import path from "node:path";
3
3
 
4
4
  // 프록시 버전 — 서버가 X-AImakeAll-MCP-Version 으로 하한을 강제(426)할 수 있다.
5
- export const MCP_PROXY_VERSION = "0.4.2";
5
+ export const MCP_PROXY_VERSION = "0.4.3";
6
6
 
7
7
  export const DEFAULT_API_BASE = "https://aimakeall.com";
8
8
  export const DEFAULT_COMPANION_URL = "http://127.0.0.1:9876";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aimakeall-mcp",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "AImakeAll MCP 서버 — Claude Code/Codex에서 자연어로 영상 기획·생성·렌더·퍼블리시 (렌더는 로컬 컴패니언)",
5
5
  "type": "module",
6
6
  "bin": {