todogether-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 +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -327,7 +327,7 @@ async function getTodayTodosDetail() {
327
327
  if (p.subTodos && p.subTodos.length > 0) {
328
328
  for (const sub of p.subTodos) {
329
329
  const check = sub.isDone ? "✅" : "⬜";
330
- lines.push(` ${check} ${sub.title}${sub.memo ? ` (${sub.memo})` : ""}`);
330
+ lines.push(` ${check} ${sub.content}${sub.memo ? ` (${sub.memo})` : ""}`);
331
331
  }
332
332
  }
333
333
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "todogether-mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "투두게더(todogether) MCP 서버 — 로그인 후 오늘 할 일 조회",
5
5
  "type": "module",
6
6
  "license": "MIT",