@dalmasonto/taskflow-mcp 1.0.3 → 1.0.4

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.
@@ -303,9 +303,8 @@ export async function updateTaskStatus(params) {
303
303
  statusAction = 'task_status_changed';
304
304
  }
305
305
  const updated = db.prepare('SELECT * FROM tasks WHERE id = ?').get(params.id);
306
- const updatedTask = parseTask(updated);
307
- broadcastChange('task', statusAction, updatedTask);
308
- return successResponse(updatedTask);
306
+ broadcastChange('task', statusAction, parseTask(updated));
307
+ return successResponse(parseTaskCompact(updated));
309
308
  }
310
309
  export async function deleteTask(params) {
311
310
  const db = getDb();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dalmasonto/taskflow-mcp",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "MCP server for TaskFlow — manage projects, tasks, timers, analytics via AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",