Tools
Trello Manage Trello boards and cards
Copy Link Share Ask AI
Trello is a visual collaboration tool that helps you organize projects, tasks, and workflows using boards, lists, and cards.
With Trello in Nuxa, you can:
List boards and lists : View the boards you have access to and their associated lists.
List and search cards : Retrieve all cards on a board or filter by list to see their content and status.
Create cards : Add new cards to a Trello list, including descriptions, labels, and due dates.
Update and move cards : Edit card properties, move cards across lists, and set due dates or labels.
Get recent activity : Retrieve actions and activity history for boards and cards.
Comment on cards : Add comments to cards for collaboration and tracking.
Integrating Trello with Nuxa empowers your agents to manage your team’s tasks, boards, and projects programmatically. Automate project management workflows, keep task lists up-to-date, synchronize with other tools, or trigger intelligent workflows in response to Trello events—all through your AI agents.
Integrate with Trello to manage boards and cards. List boards, list cards, create cards, update cards, get actions, and add comments.
List all lists on a Trello board
Parameter Type Required Description boardIdstring Yes ID of the board to list lists from
Parameter Type Description successboolean Whether the operation was successful listsarray Array of list objects with id, name, closed, pos, and idBoard countnumber Number of lists returned errorstring Error message if operation failed
List all cards on a Trello board
Parameter Type Required Description boardIdstring Yes ID of the board to list cards from listIdstring No Optional: Filter cards by list ID
Parameter Type Description successboolean Whether the operation was successful cardsarray Array of card objects with id, name, desc, url, board/list IDs, labels, and due date countnumber Number of cards returned errorstring Error message if operation failed
Create a new card on a Trello board
Parameter Type Required Description boardIdstring Yes ID of the board to create the card on listIdstring Yes ID of the list to create the card in namestring Yes Name/title of the card descstring No Description of the card posstring No Position of the card (top, bottom, or positive float) duestring No Due date (ISO 8601 format) labelsstring No Comma-separated list of label IDs
Parameter Type Description successboolean Whether the card was created successfully cardobject The created card object with id, name, desc, url, and other properties errorstring Error message if operation failed
Update an existing card on Trello
Parameter Type Required Description cardIdstring Yes ID of the card to update namestring No New name/title of the card descstring No New description of the card closedboolean No Archive/close the card (true) or reopen it (false) idListstring No Move card to a different list duestring No Due date (ISO 8601 format) dueCompleteboolean No Mark the due date as complete
Parameter Type Description successboolean Whether the card was updated successfully cardobject The updated card object with id, name, desc, url, and other properties errorstring Error message if operation failed
Get activity/actions from a board or card
Parameter Type Required Description boardIdstring No ID of the board to get actions from (either boardId or cardId required) cardIdstring No ID of the card to get actions from (either boardId or cardId required) filterstring No Filter actions by type (e.g., "commentCard,updateCard,createCard" or "all") limitnumber No Maximum number of actions to return (default: 50, max: 1000)
Parameter Type Description successboolean Whether the operation was successful actionsarray Array of action objects with type, date, member, and data countnumber Number of actions returned errorstring Error message if operation failed
Add a comment to a Trello card
Parameter Type Required Description cardIdstring Yes ID of the card to comment on textstring Yes Comment text
Parameter Type Description successboolean Whether the comment was added successfully commentobject The created comment object with id, text, date, and member creator errorstring Error message if operation failed
Category: tools
Type: trello