MCP Server Trello
Summary
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.
Available Actions(17)
list_boards
List all boards the user has access to.
set_active_board
Set the active board for future operations. Parameters: boardId (string) - ID of the board to set as active.
list_workspaces
List all workspaces the user has access to.
set_active_workspace
Set the active workspace for future operations. Parameters: workspaceId (string) - ID of the workspace to set as active.
list_boards_in_workspace
List all boards in a specific workspace. Parameters: workspaceId (string) - ID of the workspace to list boards from.
get_active_board_info
Get information about the currently active board.
get_cards_by_list_id
Fetch all cards from a specific list. Parameters: listId (string) - ID of the Trello list.
get_lists
Retrieve all lists from the currently active board.
get_recent_activity
Fetch recent activity on the currently active board. Parameters: limit (optional number) - Number of activities to fetch (default: 10).
add_card_to_list
Add a new card to a specified list. Parameters: listId (string) - ID of the list to add the card to, name (string) - Name of the card, description (optional string) - Description of the card, dueDate (optional string) - Due date (ISO 8601 format), labels (optional array of strings) - Array of label IDs.
update_card_details
Update an existing card's details. Parameters: cardId (string) - ID of the card to update, name (optional string) - New name for the card, description (optional string) - New description, dueDate (optional string) - New due date, labels (optional array of strings) - New array of label IDs.
archive_card
Send a card to the archive. Parameters: cardId (string) - ID of the card to archive.
add_list_to_board
Add a new list to the currently active board. Parameters: name (string) - Name of the new list.
archive_list
Send a list to the archive. Parameters: listId (string) - ID of the list to archive.
get_my_cards
Fetch all cards assigned to the current user.
move_card
Move a card to a different list. Parameters: cardId (string) - ID of the card to move, listId (string) - ID of the target list.
attach_image_to_card
Attach an image to a card directly from a URL. Parameters: cardId (string) - ID of the card to attach the image to, imageUrl (string) - URL of the image to attach, name (optional string) - Name for the attachment (defaults to 'Image Attachment').
Avis de la Communauté
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation