You’ve got a couple of ways to copy or clone user stories and tasks in Azure DevOps—whether you just want a quick duplicate to tweak fields or an exact clone with all attachments and history. Here’s the rundown:
- Copying a Single Item (Azure DevOps Services)
- Go to Boards → Work Items (or your backlog/board view)
- Open the story or task you want to copy
- Click the “…” menu in the top right and choose Create copy of work item
- That spins up a new work item form pre-populated with title, description, links, etc.
- Adjust any fields (area/iteration, assignee, tags) and save
- Cloning a Single Item (Azure DevOps Server – on-prem)
- Same steps as above, but instead of “Create copy,” you’ll see Clone
- Clone gives you an exact duplicate (all custom fields, attachments, links)
- Save the cloned item; it gets a brand-new ID
- Bulk Copy / Export List
- In backlog or board view, multi-select stories/tasks (Ctrl+Click or Shift+Click)
- Click the “…” menu and pick Copy as HTML to paste into Excel, email, etc.
- Or choose Email to send a formatted list directly to your team
- Scripted / API Approach
- You can also automate copies via the REST API: • GET the source work item: GET https://dev.azure.com/{org}/{project}/_apis/wit/workitems/{id}?$expand=all • POST a new work item with a JSON-patch body based on the original fields.
- See the REST reference in “Copy or clone work items” for examples
- AI-Powered Cloning (with Azure Boards MCP Server)
- If you’ve wired up the MCP Server in agent mode, you can literally type: “Create a new user story with the same title and description as work item #234 but assign it to Sprint 5”
- Or bulk: “Create five tasks similar to task #100 with titles ‘Setup A’ through ‘Setup E’”
Hope that covers what you need!
Reference list:
- Copy or clone work items (UI & AI) https://learn.microsoft.com/azure/devops/boards/backlogs/copy-clone-work-items?view=azure-devops
- REST API for work items https://learn.microsoft.com/azure/devops/boards/backlogs/copy-clone-work-items?view=azure-devops#use-ai-to-create-similar-work-items
- Copy or clone test plans/suites (analogy for scripted approach) https://learn.microsoft.com/azure/devops/test/copy-clone-test-items?view=azure-devops#rest-apis
and click on Yes for was this answer helpful. And, if you have any further query do let us know.