MCP server for Trello board management
## Trello MCP Server: Visual Project Management The **Trello MCP Server** integrates Trello's kanban-style project management into Google Antigravity, enabling developers to manage boards, cards, and workflows through AI-assisted visual project tracking. ### Why Trello MCP? - **Visual Boards**: Drag-and-drop kanban boards - **Power-Ups**: Extend functionality with integrations - **Automation**: Butler automation for routine tasks - **Templates**: Start quickly with board templates - **Team Workspaces**: Organize boards in team workspaces ### Key Features #### 1. Card Management ```javascript // Create card const card = await trello.createCard({ name: "Implement OAuth2 authentication", desc: "Add support for Google and GitHub OAuth providers", idList: "list_123", // Backlog list idMembers: ["member_456"], idLabels: ["label_backend", "label_security"], due: "2024-12-20T17:00:00.000Z" }); // Move card to different list await trello.updateCard({ id: card.id, idList: "list_in_progress" }); // Add comment await trello.addComment({ cardId: card.id, text: "Started implementation. ETA: 2 days." }); // Add checklist await trello.addChecklist({ cardId: card.id, name: "Implementation Steps", items: ["Set up providers", "Create login flow", "Add tests"] }); ``` #### 2. Board and List Operations ```javascript // Get board const board = await trello.getBoard({ id: "board_123" }); // Get lists on board const lists = await trello.getLists({ boardId: "board_123" }); // Create list const list = await trello.createList({ name: "Code Review", idBoard: "board_123", pos: "bottom" }); // Get cards in list const cards = await trello.getCards({ listId: list.id }); // Archive list await trello.archiveList({ id: list.id }); ``` ### Configuration ```json { "mcpServers": { "trello": { "command": "npx", "args": ["-y", "@anthropic/mcp-trello"], "env": { "TRELLO_API_KEY": "your-api-key", "TRELLO_TOKEN": "your-token" } } } } ``` ### Use Cases **Sprint Boards**: Create kanban boards for sprint management. **Bug Tracking**: Track bugs through stages from report to resolution. **Feature Planning**: Plan and track feature development visually. The Trello MCP Server brings visual kanban management to your development workflow.
{
"mcpServers": {
"trello": {
"mcpServers": {
"trello": {
"env": {
"TRELLO_TOKEN": "YOUR_TRELLO_TOKEN",
"TRELLO_API_KEY": "YOUR_TRELLO_API_KEY"
},
"args": [
"-y",
"mcp-server-trello"
],
"command": "npx"
}
}
}
}
}