move-cards
Move Trello cards between lists and adjust their positions using specific card and list IDs for efficient board organization.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cards | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cards": {
"items": {
"additionalProperties": false,
"properties": {
"cardId": {
"description": "ID of the card to move",
"type": "string"
},
"listId": {
"description": "ID of the destination list",
"type": "string"
},
"position": {
"description": "Position in the list (e.g. \"top\", \"bottom\")",
"type": "string"
}
},
"required": [
"cardId",
"listId"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"cards"
],
"type": "object"
}