Overview
Manage Trello boards, cards, lists, and Kanban workflows.
Setup
Run with npx:
npx -y @modelcontextprotocol/server-trelloConfiguration
TRELLO_API_KEY and TRELLO_API_TOKEN environment variablesDocumentation
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
| Operation | Description |
|---|---|
| Create Card | Add card to list |
| Get Board | Retrieve board details |
| Get Cards | List board cards |
| Update Card | Modify card properties |
| Move Card | Change 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
