Facilitates interaction with Trello boards via the Trello API, offering features like rate limiting, type safety, input validation, and error handling for seamless management of cards, lists, and board activities.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Get all items from a checklist by name. Parameters: name (string), boardId (optional string)
Add a new item to an existing checklist. Parameters: text (string), checkListName (string), boardId (optional string)
Search for checklist items containing specific text. Parameters: description (string), boardId (optional string)
Get all items from the 'Acceptance Criteria' checklist. Parameters: boardId (optional string)
Get a complete checklist with all items and completion percentage. Parameters: name (string), boardId (optional string)
Get comprehensive details of a specific Trello card. Parameters: cardId (string), includeMarkdown (optional boolean)
Fetch all cards from a specific list. Parameters: boardId (optional string), listId (string)
Retrieve all lists from a board. Parameters: boardId (optional string)
Fetch recent activity on a board. Parameters: boardId (optional string), limit (optional number)
Add a new card to a specified list. Parameters: boardId (optional string), listId (string), name (string), description (optional string), dueDate (optional string), start (optional string), labels (optional array of strings)
Update an existing card's details. Parameters: boardId (optional string), cardId (string), name (optional string), description (optional string), dueDate (optional string), start (optional string), dueComplete (optional boolean), labels (optional array of strings)
Send a card to the archive. Parameters: boardId (optional string), cardId (string)
Add a new list to a board. Parameters: boardId (optional string), name (string)
Send a list to the archive. Parameters: boardId (optional string), listId (string)
Fetch all cards assigned to the current user. Parameters: none
Move a card to a different list. Parameters: boardId (optional string), cardId (string), listId (string)
Attach an image to a card directly from a URL. Parameters: boardId (optional string), cardId (string), imageUrl (string), name (optional string)
Attach any type of file to a card from a URL or a local file path. Parameters: boardId (optional string), cardId (string), fileUrl (string), name (optional string), mimeType (optional string)
Add a comment to a Trello card. Parameters: cardId (string), text (string)
Update an existing comment on a card. Parameters: commentId (string), text (string)
Delete a comment from a card. Parameters: commentId (string)
Retrieve all comments from a specific card. Parameters: cardId (string), limit (optional number)
List all boards the user has access to. Parameters: none
Set the active board for future operations. Parameters: boardId (string)
List all workspaces the user has access to. Parameters: none
Set the active workspace for future operations. Parameters: workspaceId (string)
List all boards in a specific workspace. Parameters: workspaceId (string)
Get information about the currently active board. Parameters: none