Trello
An Atlassian kanban tool for accessing boards, lists, cards, and members.
https://api.trello.com
Terminal
curl https://proxy.bundleup.io/[...] \
-H "Authorization: Bearer Zw7Lt7..." \
-H "BU-Connection-Id: conn_abc123" Proxy
const bundleup = new BundleUp('Zw7Lt7...');
const proxy = bundleup.proxy('conn_abc123');
const response = await proxy.get('/[...]');Unified MCP Tools
me
Get the Trello account the connection is authenticated as.
tickets
Retrieve a list of cards from Trello.
ticket
Retrieve a single card from Trello by ID.
projects
Retrieve a list of boards from Trello.
Unified API Endpoints
/me
Retrieve the Trello account this connection is authenticated as.
/ticketing/tickets
Retrieve a list of cards from Trello. Defaults to the cards the authenticated member is on; pass a `board` passthrough parameter to list every card on a board instead.
/ticketing/tickets/{id}
Retrieve a single card from Trello by ID.
/ticketing/projects
Retrieve a list of boards from Trello.
