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 +1 -1
- package/lib/cloud-tools.mjs +2 -2
- package/lib/config.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/lib/cloud-tools.mjs
CHANGED
|
@@ -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.
|
|
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.
|
|
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.
|
|
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";
|