Azure DevOps MCP Server for Cline

create_work_item

Create a new work item using JSON patch operations

Input Schema

NameRequiredDescriptionDefault
documentYesArray of JSON patch operations to apply
typeYesWork item type (e.g., "Bug", "Task", "User Story")

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" }, "type": { "description": "Work item type (e.g., \"Bug\", \"Task\", \"User Story\")", "type": "string" } }, "required": [ "type", "document" ], "type": "object" }