← Tools Reference

Trello

Kanban boards, lists, and cards

API key10 toolshttps://api.trello.com/1
GET
trello_list_boards
List the boards the authenticated token's member can see

/members/me/boards

2 parameters
ParamTypeRequiredDescription
filterstringoptionalBoard filter: 'all', 'open' (default), 'closed', 'members', 'organization'
fieldsstringoptionalComma-separated board fields to return, e.g. 'name,url,closed'
GET
trello_get_board
Get a single board by ID

/boards/{board_id}

2 parameters
ParamTypeRequiredDescription
board_idstringrequiredBoard ID (or shortLink from its URL)
fieldsstringoptionalComma-separated board fields to return, e.g. 'name,url,desc'
POST
trello_create_board
Create a new board

/boards

3 parameters
ParamTypeRequiredDescription
namestringrequiredBoard name
descstringoptionalBoard description
defaultListsbooleanoptionalWhether to create default To Do/Doing/Done lists (default true)
GET
trello_list_lists
List the lists (columns) on a board

/boards/{board_id}/lists

2 parameters
ParamTypeRequiredDescription
board_idstringrequiredBoard ID
cardsstringoptional'none' (default), 'open', 'closed', or 'all' — include each list's cards
POST
trello_create_list
Create a new list (column) on a board

/lists

3 parameters
ParamTypeRequiredDescription
namestringrequiredList name
idBoardstringrequiredBoard ID to create the list on
posstringoptionalPosition: 'top', 'bottom' (default), or a positive number
GET
trello_list_cards
List the cards in a list

/lists/{list_id}/cards

2 parameters
ParamTypeRequiredDescription
list_idstringrequiredList ID
fieldsstringoptionalComma-separated card fields to return, e.g. 'name,due,idMembers'
GET
trello_get_card
Get a single card by ID

/cards/{card_id}

2 parameters
ParamTypeRequiredDescription
card_idstringrequiredCard ID (or shortLink from its URL)
fieldsstringoptionalComma-separated card fields to return, e.g. 'name,desc,due'
POST
trello_create_card
Create a new card in a list

/cards

6 parameters
ParamTypeRequiredDescription
idListstringrequiredList ID to create the card in
namestringrequiredCard title
descstringoptionalCard description
duestringoptionalDue date, ISO 8601 (e.g. '2026-08-01T17:00:00.000Z')
idMembersarrayoptionalMember IDs to assign to the card
posstringoptionalPosition: 'top', 'bottom' (default), or a positive number
PUT
trello_update_card
Update fields on an existing card (move list, rename, close/archive, etc.)

/cards/{card_id}

7 parameters
ParamTypeRequiredDescription
card_idstringrequiredCard ID to update
namestringoptionalNew card title
descstringoptionalNew card description
closedbooleanoptionalSet true to archive the card
idListstringoptionalMove the card to this list ID
duestringoptionalNew due date, ISO 8601, or null to clear
dueCompletebooleanoptionalMark the due date as complete
POST
trello_add_comment
Post a comment on a card

/cards/{card_id}/actions/comments

2 parameters
ParamTypeRequiredDescription
card_idstringrequiredCard ID to comment on
textstringrequiredComment text