Trello
Manage Trello boards and cards
Configuration
Get Lists
Operation
Get Lists
Trello Account*
Select Trello account
Board*
Enter board ID
Get Lists (
trello_list_lists)List all lists on a Trello board
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
boardId | string | Yes | ID of the board to list lists from |
Output
| Parameter | Type | Description |
|---|---|---|
lists | array | Array of list objects with id, name, closed, pos, and idBoard |
List Cards
Operation
List Cards
Trello Account*
Select Trello account
Board*
Enter board ID or search for a board
List (Optional)
Enter list ID to filter cards by list
List Cards (
trello_list_cards)List all cards on a Trello board
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
boardId | string | Yes | ID of the board to list cards from |
listId | string | No | Optional: Filter cards by list ID |
Output
| Parameter | Type | Description |
|---|---|---|
cards | array | Array of card objects with id, name, desc, url, board/list IDs, labels, and due date |
Create Card
Operation
Create Card
Trello Account*
Select Trello account
Board*
Enter board ID or search for a board
List*
Enter list ID or search for a list
Card Name*
Enter card name/title
Description
Enter card description (optional)
Position
Select...
Due Date
YYYY-MM-DD or YYYY-MM-DDTHH:mm:ssZ
Labels
Comma-separated label IDs (optional)
Create Card (
trello_create_card)Create a new card on a Trello board
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
boardId | string | Yes | ID of the board to create the card on |
listId | string | Yes | ID of the list to create the card in |
name | string | Yes | Name/title of the card |
desc | string | No | Description of the card |
pos | string | No | Position of the card (top, bottom, or positive float) |
due | string | No | Due date (ISO 8601 format) |
labels | string | No | Comma-separated list of label IDs |
Output
Refer to the block outputs for this operation.
Update Card
Operation
Update Card
Trello Account*
Select Trello account
Card*
Enter card ID or search for a card
New Card Name
Enter new card name (leave empty to keep current)
New Description
Enter new description (leave empty to keep current)
Archive Card
Disabled
Mark Due Date Complete
Disabled
Move to List
Enter list ID to move card
Due Date
YYYY-MM-DD or YYYY-MM-DDTHH:mm:ssZ
Update Card (
trello_update_card)Update an existing card on Trello
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
cardId | string | Yes | ID of the card to update |
name | string | No | New name/title of the card |
desc | string | No | New description of the card |
closed | boolean | No | Archive/close the card (true) or reopen it (false) |
idList | string | No | Move card to a different list |
due | string | No | Due date (ISO 8601 format) |
dueComplete | boolean | No | Mark the due date as complete |
Output
Refer to the block outputs for this operation.
Get Actions
Operation
Get Actions
Trello Account*
Select Trello account
Board ID
Enter board ID to get board actions
Card ID
Enter card ID to get card actions
Action Filter
e.g., commentCard,updateCard
Limit
50
Get Actions (
trello_get_actions)Get activity/actions from a board or card
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
boardId | string | No | ID of the board to get actions from (either boardId or cardId required) |
cardId | string | No | ID of the card to get actions from (either boardId or cardId required) |
filter | string | No | Filter actions by type (e.g., "commentCard,updateCard,createCard" or "all") |
limit | number | No | Maximum number of actions to return (default: 50, max: 1000) |
Output
| Parameter | Type | Description |
|---|---|---|
actions | array | Array of action objects with type, date, member, and data |
Add Comment
Operation
Add Comment
Trello Account*
Select Trello account
Card*
Enter card ID or search for a card
Comment*
Enter your comment
Add Comment (
trello_add_comment)Add a comment to a Trello card
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
cardId | string | Yes | ID of the card to comment on |
text | string | Yes | Comment text |
Output
Refer to the block outputs for this operation.
Usage Instructions
Integrate with Trello to manage boards and cards. List boards, list cards, create cards, update cards, get actions, and add comments.
Notes
- Category:
tools - Type:
trello