Skip to content

Add optional pos parameter to move_card tool to control card position within target list (supports 'top', 'bottom', or numeric value) #51

@Schutzworks

Description

@Schutzworks

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
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions