🔌

Trello MCP

Productivity550

Manage Trello boards, cards, lists, and Kanban workflows.

Claude DesktopCursor

Overview

Manage Trello boards, cards, lists, and Kanban workflows.

Setup

Run with npx:

npx -y @modelcontextprotocol/server-trello

Configuration

TRELLO_API_KEY and TRELLO_API_TOKEN environment variables

Documentation

Trello MCP (Enhanced)

Overview

Trello MCP provides access to Trello API for Kanban board and card management.

Features

  • Board management
  • Card creation and editing
  • List management
  • Power-up integration
  • Activity tracking

Installation

npx -y @modelcontextprotocol/server-trello

Configuration

Set up Trello API credentials:

export TRELLO_API_KEY=your_api_key
export TRELLO_API_TOKEN=your_api_token

Get your credentials from Trello Power-Up Manager.

Available Operations

OperationDescription
Create CardAdd card to list
Get BoardRetrieve board details
Get CardsList board cards
Update CardModify card properties
Move CardChange card position

Usage Examples

Create Card

{
  "action": "create_card",
  "name": "Implement feature X",
  "idList": "list_id",
  "desc": "Description of the feature",
  "due": "2026-05-26T12:00:00Z"
}

Get Board

{
  "action": "get_board",
  "id": "board_id",
  "lists": "all",
  "cards": "open"
}

Move Card

{
  "action": "move_card",
  "id": "card_id",
  "idList": "new_list_id",
  "pos": 1
}

Pros

  • ✅ Visual Kanban interface
  • ✅ Easy to use
  • ✅ Power-up ecosystem
  • ✅ Mobile support

Cons

  • ❌ Requires Trello account
  • ❌ Limited advanced features
  • ❌ API rate limits

Resources