tripinned-mcp 1.0.2 → 1.0.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -96,7 +96,7 @@ server.tool("add_item", `특정 Day에 일정을 추가합니다. Day당 최대
96
96
  ]).optional().describe("아이콘 종류 (기본값: ETC)"),
97
97
  start_time: z.string().regex(/^\d{2}:\d{2}$/).optional().describe("시작 시간 (HH:MM)"),
98
98
  end_time: z.string().regex(/^\d{2}:\d{2}$/).optional().describe("종료 시간 (HH:MM)"),
99
- end_day_offset: z.number().int().min(0).optional().describe("도착일 오프셋 (0=당일, 1=다음날 등)"),
99
+ end_day_offset: z.coerce.number().int().min(0).optional().describe("도착일 오프셋 (0=당일, 1=다음날 등)"),
100
100
  place: z.string().optional().describe("장소명"),
101
101
  memo: z.string().max(1000).optional().describe("메모 (최대 1000자)"),
102
102
  from_place: z.string().optional().describe("출발지 IATA 코드 (항공편 전용, 예: ICN)"),
@@ -139,7 +139,7 @@ server.tool("update_item", "일정을 수정합니다. 변경할 필드만 보
139
139
  ]).optional().describe("새 아이콘"),
140
140
  start_time: z.string().regex(/^\d{2}:\d{2}$/).optional().describe("새 시작 시간 (HH:MM)"),
141
141
  end_time: z.string().regex(/^\d{2}:\d{2}$/).optional().describe("새 종료 시간 (HH:MM)"),
142
- end_day_offset: z.number().int().min(0).optional().describe("도착일 오프셋 (0=당일, 1=다음날 등)"),
142
+ end_day_offset: z.coerce.number().int().min(0).optional().describe("도착일 오프셋 (0=당일, 1=다음날 등)"),
143
143
  place: z.string().optional().describe("새 장소명"),
144
144
  memo: z.string().max(1000).optional().describe("새 메모"),
145
145
  from_place: z.string().optional().describe("출발지 IATA 코드 (항공편 전용, 예: ICN)"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tripinned-mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "MCP server for Tripinned — manage your travel plans with AI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",