Connect to Trello to manage boards, lists, cards, and comments.
| Action | Description | Parameters | Returns |
|---|---|---|---|
add_attachment ⚠ | Add an attachment to a Trello card | card_id [url, name] | dict |
add_comment ⚠ | Add a comment to a Trello card | card_id, text | TrelloComment |
add_label | Add a label to a Trello card | card_id, label_id | bool |
archive_card ⚠ | Archive a Trello card | card_id | TrelloCard |
archive_list ⚠ | Archive a Trello list | list_id | TrelloList |
create_card ⚠ | Create a new Trello card | list_id, name [desc] | TrelloCard |
create_checklist ⚠ | Create a checklist on a Trello card | card_id, name | dict |
create_label ⚠ | Create a label on a Trello board | board_id, name [color] | dict |
create_list ⚠ | Create a new list on a Trello board | board_id, name | TrelloList |
delete_card ⚠ | Delete a Trello card | card_id | bool |
get_board | Get a single Trello board by ID | board_id | TrelloBoard |
get_card | Get a single Trello card by ID | card_id | TrelloCard |
get_list | Get a single Trello list by ID | list_id | TrelloList |
list_attachments | List attachments on a Trello card | card_id | list |
list_board_members | List members of a Trello board | board_id | list |
list_boards | List boards for a Trello member | [member] | PaginatedList[TrelloBoard] |
list_card_actions | List actions (activity log) on a Trello card | card_id | list |
list_cards | List cards in a Trello list | list_id | PaginatedList[TrelloCard] |
list_checklists | List checklists on a Trello card | card_id | list |
list_labels | List all labels on a Trello board | board_id | list |
list_lists | List all lists on a Trello board | board_id | PaginatedList[TrelloList] |
list_members | List members of a Trello board | board_id | list |
move_card ⚠ | Move a Trello card to a different list | card_id, list_id | TrelloCard |
unarchive_card | Unarchive a Trello card | card_id | TrelloCard |
update_card ⚠ | Update a Trello card | card_id [name, desc, list_id] | TrelloCard |
Full schema explorer, code generation, and live API testing