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.
Nessuna recensione ancora. Sii il primo a recensire!
Accedi per unirti alla conversazione
Retrieve all items from a checklist by name. Parameters: name (string), boardId (optional string)
Add new items to existing checklists. Parameters: text (string), checkListName (string), boardId (optional string)
Search checklist items by text content. Parameters: description (string), boardId (optional string)
Quick access to 'Acceptance Criteria' checklists. Parameters: boardId (optional string)
Get complete checklist with completion percentage. Parameters: name (string), boardId (optional string)
Get comprehensive details of a specific Trello card with human-level parity. 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)
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