Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Trello
trello

Trello MCP Server

MCP server for Trello board management

trellokanbanproject-managementboardstasks

About

## 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.

Installation

Configuration
{
  "mcpServers": {
    "trello": {
      "mcpServers": {
        "trello": {
          "env": {
            "TRELLO_TOKEN": "YOUR_TRELLO_TOKEN",
            "TRELLO_API_KEY": "YOUR_TRELLO_API_KEY"
          },
          "args": [
            "-y",
            "mcp-server-trello"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Get API key from trello.com/app-key
  2. 22. Generate token with API key
  3. 33. Manage cards, lists, comments, and attachments

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers