tripinned-mcp 1.0.8 → 1.0.9
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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -49,7 +49,7 @@ server.tool("create_trip", `새 여행 플랜을 만듭니다. 날짜 범위에
|
|
|
49
49
|
title: z.string().max(30).describe("플랜 제목 (최대 30자)"),
|
|
50
50
|
start_date: z.string().describe("시작일 (YYYY-MM-DD)"),
|
|
51
51
|
end_date: z.string().describe("종료일 (YYYY-MM-DD), 시작일 포함 최대 30일"),
|
|
52
|
-
cover_icon: z.string().optional().describe("커버 이모지 (기본값: ✈️)"),
|
|
52
|
+
cover_icon: z.string().optional().describe("커버 이모지 (기본값: ✈️). 예: ✈️ 🌏 🏖️ 🏔️ 🗼 🎒 — 반드시 단일 이모지 문자를 사용하세요"),
|
|
53
53
|
}, async ({ title, start_date, end_date, cover_icon }) => {
|
|
54
54
|
const data = await call("POST", "/trips", {
|
|
55
55
|
title,
|