azure-devops-mcp

by RyanCardin15
Verified

moveCardOnBoard

Move a card on a board

Input Schema

NameRequiredDescriptionDefault
boardIdYesID of the board
columnIdYesID of the column to move to
positionNoPosition within the column
teamIdNoTeam ID (uses default team if not specified)
workItemIdYesID of the work item to move

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "boardId": { "description": "ID of the board", "type": "string" }, "columnId": { "description": "ID of the column to move to", "type": "string" }, "position": { "description": "Position within the column", "type": "number" }, "teamId": { "description": "Team ID (uses default team if not specified)", "type": "string" }, "workItemId": { "description": "ID of the work item to move", "type": "number" } }, "required": [ "boardId", "workItemId", "columnId" ], "type": "object" }

You must be authenticated.

Other Tools