Trello's MCP situation is the common one across this whole category: no first-party server, several community servers of uneven quality, and directory listings that do not tell you which is maintained. If you pick from a search result without checking, you will likely land on a repository whose last commit predates the current Trello API surface.
How to choose between the community servers
Three signals, in order. Recent commits inside the last couple of months, because the Trello API moves and dead servers fail silently. An explicit list of the tools the server exposes in the README, because a server that documents four tools and implements eleven is a server nobody has read recently. And a stated auth model — key plus token, with the scopes named. Anything asking for credentials without saying what it does with them is not worth the install.
The permission trap
Trello's token scopes are the single biggest source of "it connected but nothing works". A read-only token produces a server that lists boards perfectly and fails every write with an unhelpful error. If reads succeed and writes fail, regenerate the token with write scope before touching the config again.
What it is genuinely good for
Trello's structure — board, list, card — maps unusually well onto conversation. "Move everything in Review that has been there more than a week back to In Progress and comment why" is a sentence, and through MCP it is also an action. Reporting is the other strong case: asking for a summary of what moved this week is faster than reading the board.
Where LemTask stands today
LemTask does not ship an MCP server yet, and we are not going to pretend otherwise on a page developers will read. What LemTask has working right now is outbound and inbound webhooks, Zapier, Make and Apple Shortcuts, which covers "when a task is created, do X" and "create a task from anything that can send an HTTP request". An MCP connection is on the roadmap; when it ships and we have tested it end to end with Claude, this page will say so with the config block, and not a day earlier.