fix: refine add_tasks to encourage get_tasks less

Amolith created

Change summary

internal/mcp/server.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

internal/mcp/server.go 🔗

@@ -247,7 +247,7 @@ func (s *Server) handleAddTasks(ctx context.Context, request mcp.CallToolRequest
 
 	var response string
 	if !result.HadExistingTasks {
-		response = fmt.Sprintf("Tasks added successfully! Get started on your first one once you're ready, and call `get_tasks` frequently to remind yourself where you are in the process.\n\n%s", taskList)
+		response = fmt.Sprintf("Tasks added successfully! Get started on your first one once you're ready. If you're updating statuses as you should, you may call `get_tasks` less frequently because `update_task_statuses` prints the revised list.\n\n%s", taskList)
 	} else {
 		response = taskList
 	}