Table of contents

Agents that need to create cards, move items, or surface overdue tasks in Trello have to navigate OAuth, manage board-specific permissions, and maintain credentials for every connected workspace.
To help your developers read board state, manage cards, and automate task workflows more easily from their terminal, we'll show you how to connect Trello with Merge Agent Handler's Trello MCP server.
Merge Agent Handler connects Claude Code to the Trello API through a single CLI setup.
You install the Merge CLI, authenticate once with your Merge Agent Handler account, and register the connection with one command.
Merge handles Trello's OAuth token storage and refresh, so you never manage API keys or worry about token expiration across workspaces.
Here's the command that registers the connection:
Related: The steps for integrating a Trello MCP with Codex
Before getting started, you'll need the following:
claude --version to confirm)pipx --version to confirm, or install via pip install pipx)If you want to connect Merge Agent Handler's Trello MCP with internal or customer-facing agentic products, you can follow the steps in our docs.
Install with pipx: pipx install merge-api

Then confirm the installation: merge --version
Related: How to use a Trello MCP in Cursor
Run merge login to connect the CLI to your Merge account: merge login
This starts an authenticated session so the CLI can make requests on your behalf.
Register the Agent Handler MCP server with Claude Code:
Or manually:
Open Claude Code and run: /mcp
agent-handler should appear under Local MCPs with a connected status.

Open Claude Code and test the connection with a prompt like: "Show me all cards assigned to me across my active boards that are due this week."
A Magic Link will appear on first use to complete connector authentication.

Once authenticated, you should see an output like the following:

{{this-blog-only-cta}}
In case you have more questions on setting up and using the Trello MCP in Claude Code, we've addressed several more commonly-asked questions below.
With Trello connected, Claude Code can:
You can build directly on Trello's REST API. Atlassian's documentation is thorough, OAuth is well-supported, and for a single workspace with one user the setup is manageable. Several community MCP servers have already been built on top of the Trello API if you want a faster starting point.
The problem is workspace and user scale. Trello OAuth tokens are scoped to individual user accounts. If your agent needs to read or write cards across multiple workspaces or on behalf of multiple users, each requires a separate authorization flow, a separate token pair, and its own refresh cycle. A community MCP server handles none of that for you; you still own the credential storage and the token refresh logic.
Atlassian doesn't offer an official Trello MCP server, so there's no supported path beyond Merge or a community build. Community implementations vary in maintenance quality and have no audit logging, DLP controls, or enterprise support.
Merge Agent Handler handles multi-user OAuth across Trello workspaces and manages token refresh centrally. You can also scope which Trello tools a given agent can access: a card creation agent, for example, ca use create_card and get_board_lists but not delete_board or remove_board_member. And every tool call is logged with the timestamp, tool name, and inputs.
Trello is where task state lives for teams that prefer a visual, board-based workflow. Developers who need agents to interact with that state—creating cards from upstream events, updating card status based on external triggers, or surfacing overdue items across boards—currently have to wire up a Trello integration from scratch each time a new workflow needs it.
With the Trello MCP connected, Claude Code can query board state, manage cards, and update task metadata without leaving the terminal.
This matters most when Trello is one node in a larger automated workflow: a card gets created when a new support ticket is filed, a checklist item is checked when a deployment succeeds, or a weekly summary is generated from cards that moved to Done in the last seven days.
Use Merge Agent Handler’s 150+ connectors (including Trello) to power reliable, secure, and powerful agents.