move-card
Relocate Trello cards to specific lists and positions using this tool to streamline task management and maintain organized workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cardId | Yes | ID of the card to move | |
listId | Yes | ID of the destination list | |
position | No | Position in the list (e.g. "top", "bottom") |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"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"
}