@opsee/mcp-server 0.6.4 → 0.6.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opsee/mcp-server",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "Opsee MCP server — manage projects, tasks, docs, and cycles from AI coding environments",
5
5
  "type": "module",
6
6
  "bin": {
@@ -31,7 +31,11 @@ export function formatTask(t: Task): string {
31
31
 
32
32
  const assignee = t.assignedUser?.fullName || "Unassigned";
33
33
  const cycle = t.cycle?.name || "None";
34
- lines.push(` Assignee: ${assignee} | Cycle: ${cycle}`);
34
+ const milestone = t.milestone?.name || "None";
35
+ lines.push(` Assignee: ${assignee} | Cycle: ${cycle} | Milestone: ${milestone}`);
36
+
37
+ const parent = t.parentTaskId ? `#${t.parentTaskId}` : "—";
38
+ lines.push(` Parent: ${parent}`);
35
39
 
36
40
  if (t.storyPoints) lines.push(` Story Points: ${t.storyPoints}`);
37
41
  if (t.estimatedHours) lines.push(` Estimated Hours: ${t.estimatedHours}`);