Manage Trello boards, lists, and cards via the REST API: browse boards, list and create cards, move them, and comment.
130+ deploysclaude mcp add trello --url https://datafaucet.dev/api/mcp/t/trello
Run this command in your terminal · most users connect in under 60s
GET endpoints
trello_get_current_user
Get the authenticated member. Returns id, username, fullName, and email.
https://api.trello.com/1/members/me?key={key}&token={token}
trello_list_boards
List the member's boards. Returns each board's id, name, url, and closed status. Use a board id to list its lists.
https://api.trello.com/1/members/me/boards?fields=name,url,closed&key={key}&token={token}
trello_list_lists
List the columns (lists) on a board. Returns each list's id and name. Use a list id to view or create cards.
https://api.trello.com/1/boards/{board_id}/lists?key={key}&token={token}
trello_list_cards
List cards in a list. Returns each card's id, name, desc, due date, and url.
https://api.trello.com/1/lists/{list_id}/cards?fields=name,desc,due,url&key={key}&token={token}
trello_search_cards
Search cards across the member's boards by keyword. Returns cards[] with id, name, and board/list context.
https://api.trello.com/1/search?query={query}&modelTypes=cards&cards_limit=20&key={key}&token={token}
POST endpoints
trello_create_card
Create a card in a list. Requires list_id and name; desc optional. Returns the created card's id, url, and shortLink.
https://api.trello.com/1/cards?idList={list_id}&name={name}&desc={desc}&key={key}&token={token}
trello_add_comment
Add a comment to a card. Returns the created comment action.
https://api.trello.com/1/cards/{card_id}/actions/comments?text={text}&key={key}&token={token}
PUT endpoints
trello_move_card
Move a card to a different list (e.g. Doing → Done). Returns the updated card.
https://api.trello.com/1/cards/{card_id}?idList={target_list_id}&key={key}&token={token}
Run this in your terminal:
claude mcp add trello https://datafaucet.dev/api/mcp/t/trello
Connect Trello to your AI agent in under 60 seconds. No account required.
{notion_token}) with your real credentialsNeed API keys? Try our free sandbox templates first to see MCP in action with zero setup.
Replace these placeholders with your real values before deploying:
{board_id}Resource identifier{card_id}Resource identifier{desc}Your value{key}Your value{list_id}Resource identifier{name}Your value{query}Your value{target_list_id}Resource identifier{text}Your value{token}API settings pagePreview:
GET https://api.trello.com/1/members/me?key={key}&token={token}claude mcp add trello --url https://datafaucet.dev/api/mcp/t/trelloWhat your AI agent sees
I have access to 8 tools from Trello: trello_get_current_user, trello_list_boards, trello_list_lists, and 5 more.
“Get the authenticated member. Returns id, username, fullName, and email.”
Calling trello_get_current_user... Done. Here are the results.
Try these prompts
“List all cards in the To Do list on my main board”
Copy“Create a card 'Fix onboarding bug' in the Backlog with a description”
Copy“Move card X to the Done list and comment that it shipped”
CopyClick any prompt to copy, then paste into your AI client.