Is it possible to when using Move_Card to pass the pos in the target list as detailed below? I'd like Done cards at the top, now Claude seems to insert them randomly. Love this by the way, thanks!
When moving a card to a new list via move_card, there's no way to specify where in the target list the card should land. Currently it seems to land in an unpredictable position (middle of the list).
The Trello API supports a pos parameter that accepts:
"top" - places card at top of list
"bottom" - places card at bottom of list
Numeric value - specific position
Use case: When moving completed tasks to a "Done" list, you typically want them at the top (most recently completed visible first).
Proposed change: Add optional pos parameter to move_card:
typescript{
cardId: string, // required
listId: string, // required
boardId?: string, // optional
pos?: "top" | "bottom" | number // optional, new
}