This MCP server implementation provides a bridge to Trello, enabling AI assistants to interact with Trello boards, lists, and cards. Developed by the Model Context Protocol team, it offers tools for retrieving cards, managing lists, adding and updating cards, and monitoring board activity. The server includes built-in rate limiting, robust error handling, and TypeScript support. It's designed for use cases requiring task management integration, such as project planning, workflow automation, or collaborative task tracking.
No reviews yet. Be the first to review!
Sign in to join the conversation
Retrieves a list of cards contained in the specified list ID. Parameters: listId (string)
Retrieves all lists in the specified board. Parameters: boardId (string)
Retrieves the most recent activity for a specified board. Parameters: boardId (string), limit (optional number)
Adds a card to the specified list. Parameters: listId (string), name (string), description (optional string), dueDate (optional string), labels (optional array of strings)
Updates the content of a card. Parameters: cardId (string), name (optional string), description (optional string), dueDate (optional string), labels (optional array of strings)
Archives (closes) the specified card. Parameters: cardId (string)
Adds a new list to the specified board. Parameters: boardId (string), name (string)
Archives (closes) the specified list. Parameters: listId (string)
Retrieves all cards related to your account. Parameters: none
Performs a cross-board search across all boards in the workspace. Parameters: query (string), limit (optional number)
Retrieves all attachments from a specified card. Parameters: cardId (string)
Downloads a specific attachment from a Trello card. Parameters: cardId (string), attachmentId (string)