aimakeall-mcp 0.4.1 → 0.4.2
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
|
@@ -188,12 +188,12 @@ export function registerCloudTools(server, config, api) {
|
|
|
188
188
|
|
|
189
189
|
server.tool(
|
|
190
190
|
"research_product",
|
|
191
|
-
"상품 링크로 리뷰 기반 시장조사를 합니다: 구매자 불만 TOP3(근거 리뷰 인용)·첫 3초 후킹 패턴·경쟁 광고 공백·핵심 USP·금지 표현. 결과의 planBrief는 plan_commerce_video의 researchBrief로, productImagePaths는 productImagePaths로 그대로 이어가세요. 사이트가 서버 접근을 차단하면(fetchBlocked 안내) 에이전트가 직접
|
|
191
|
+
"상품 링크로 리뷰 기반 시장조사를 합니다: 구매자 불만 TOP3(근거 리뷰 인용)·첫 3초 후킹 패턴·경쟁 광고 공백·핵심 USP·금지 표현. 결과의 planBrief는 plan_commerce_video의 researchBrief로, productImagePaths는 productImagePaths로 그대로 이어가세요. 사이트가 서버 접근을 차단하면(fetchBlocked 안내) 에이전트가 직접 페이지를 읽어 넘기되, 쿠팡처럼 에이전트 브라우저까지 막는 몰은 사용자에게 보이는 리뷰·설명을 복사해 달라고 요청해 reviewsText로 다시 호출하세요.",
|
|
192
192
|
{
|
|
193
193
|
productUrl: z.string().optional().describe("상품 페이지 URL (아마존·쇼핑몰 등)"),
|
|
194
194
|
productName: z.string().optional().describe("상품명 (URL 없이 텍스트만 넘길 때)"),
|
|
195
195
|
pageText: z.string().optional().describe("에이전트가 직접 읽은 상품 페이지 텍스트 (봇 차단 폴백)"),
|
|
196
|
-
reviewsText: z.string().optional().describe("
|
|
196
|
+
reviewsText: z.string().optional().describe("구매 후기 텍스트 — 에이전트 수집분 또는 사용자가 복사해 준 리뷰 (봇 차단 폴백)"),
|
|
197
197
|
downloadImages: z.boolean().optional().describe("기본 true — 상품 이미지를 로컬 저장해 plan_commerce_video용 경로 반환"),
|
|
198
198
|
},
|
|
199
199
|
wrapCloudHandler(config, async ({ productUrl = "", productName = "", pageText = "", reviewsText = "", downloadImages = true }) => {
|
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.2";
|
|
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";
|