chore: simplify output on task creation

Amolith created

Change summary

internal/mcp/server.go | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)

Detailed changes

internal/mcp/server.go 🔗

@@ -251,15 +251,8 @@ func (s *Server) handleAddTasks(ctx context.Context, request mcp.CallToolRequest
 
 	var response string
 	if !result.HadExistingTasks {
-		// No existing tasks - show verbose instructions + task list
-		goal := s.planner.GetGoal()
-		goalText := "your planning session"
-		if goal != nil {
-			goalText = fmt.Sprintf("\"%s\"", goal.Text)
-		}
-		response = fmt.Sprintf("Tasks added successfully! Get started on your first one once you're ready, and call `project_management__get_tasks` frequently to remind yourself where you are in the process. Reminder that your overarching goal is %s.\n\n%s", goalText, taskList)
+		response = fmt.Sprintf("Tasks added successfully! Get started on your first one once you're ready, and call `project_management__get_tasks` frequently to remind yourself where you are in the process.\n\n%s", taskList)
 	} else {
-		// Had existing tasks - just show the task list (like get_tasks)
 		response = taskList
 	}
 	return createSuccessResult(response), nil