
How to add Trello MCP to Cursor
Comprehensive Trello integration for Claude Desktop, Claude Code, Gemini CLI and other MCP clients — 19 tools for boards, cards and lists. Paste the config into ~/.cursor/mcp.json and restart Cursor.
Last updated June 14, 2026 · 31★ · stdio · apikey
Cursor config for Trello MCP
git clone https://github.com/kocakli/trello-desktop-mcp.git && cd trello-desktop-mcp && npm install && npm run build{
"mcpServers": {
"trello-mcp": {
"command": "node",
"args": [
"/absolute/path/to/trello-desktop-mcp/dist/index.js"
],
"env": {
"TRELLO_API_KEY": "your-api-key-here",
"TRELLO_TOKEN": "your-token-here"
}
}
}
}Setup steps
- 1Open Cursor → Settings → MCP → Add new MCP server (or edit ~/.cursor/mcp.json directly).
- 2Paste the Trello MCP config below into the "mcpServers" object.
- 3Fill in placeholder secrets, then save.
- 4Cursor reloads MCP servers automatically — check Settings → MCP for a green status dot.
- 5Ask Cursor to use one of Trello MCP's tools to confirm it's connected.
Before you start
- Node.js 18+ installed
- An MCP-compatible client (Claude Desktop, Claude Code, Gemini CLI, etc.)
- A Trello account with API credentials (API Key and Token from https://trello.com/app-key)
What Trello MCP can do in Cursor
trello_searchUniversal search across all Trello content (boards, cards, members, organizations).
trello_get_user_boardsGet all boards accessible to the current user.
get_board_detailsGet detailed board information including its lists and cards.
get_cardGet comprehensive card details including members, labels and checklists.
create_cardCreate new cards in any list with descriptions, due dates and assignments.
update_cardUpdate card properties such as name, description, due date and status.
move_cardMove cards between lists to update workflow status.
trello_add_commentAdd comments to cards for team communication.
Security
Requires a Trello API key and a Trello token (read/write) from https://trello.com/app-key. Credentials are stored locally in the MCP client config and passed via the TRELLO_API_KEY and TRELLO_TOKEN environment variables; they are never transmitted over the network. All Trello API calls use HTTPS. Treat the token like a password — it grants read/write access to your Trello account.
Trello MCP + Cursor FAQ
Where is the Cursor config file?
Cursor reads MCP servers from ~/.cursor/mcp.json. Paste the Trello MCP config there under the "mcpServers" key and restart the client.
Is Trello MCP safe to use with Cursor?
Requires a Trello API key and a Trello token (read/write) from https://trello.com/app-key. Credentials are stored locally in the MCP client config and passed via the TRELLO_API_KEY and TRELLO_TOKEN environment variables; they are never transmitted over the network. All Trello API calls use HTTPS. Treat the token like a password — it grants read/write access to your Trello account.
Which MCP clients are supported?
Any MCP-compatible client that supports stdio transport, including Claude Desktop, Claude Code (CLI), Gemini CLI, and others. The README provides explicit config blocks for each.
How do I get Trello API credentials?
Visit https://trello.com/app-key, copy your API Key, and generate a Token with read/write access. Set them as TRELLO_API_KEY and TRELLO_TOKEN in your MCP client config.
Are my credentials sent anywhere?
No. Credentials are stored locally in your MCP client's config and are never transmitted over the network. All Trello API calls go directly to Trello over HTTPS.