Azure DevOps MCP Server for Cline

update_work_item

Update an existing work item using JSON patch operations

Input Schema

NameRequiredDescriptionDefault
documentYesArray of JSON patch operations to apply
idYesID of the work item to update

Input Schema (JSON Schema)

{ "properties": { "document": { "description": "Array of JSON patch operations to apply", "items": { "properties": { "op": { "description": "The patch operation to perform", "enum": [ "add", "remove", "replace", "move", "copy", "test" ], "type": "string" }, "path": { "description": "The path for the operation (e.g., /fields/System.Title)", "type": "string" }, "value": { "description": "The value for the operation" } }, "required": [ "op", "path" ], "type": "object" }, "type": "array" }, "id": { "description": "ID of the work item to update", "type": "number" } }, "required": [ "id", "document" ], "type": "object" }