The MCP Server Trello provides tools for interacting with Trello boards through the Model Context Protocol (MCP), enabling seamless integration with Trello's API while handling rate limiting, type safety, and error handling automatically.
If you have Bun installed, use bunx for the fastest startup:
{
  "mcpServers": {
    "trello": {
      "command": "bunx",
      "args": ["@delorenj/mcp-server-trello"],
      "env": {
        "TRELLO_API_KEY": "your-api-key",
        "TRELLO_TOKEN": "your-token"
      }
    }
  }
}
You can also use npx or pnpx if you prefer:
{
  "mcpServers": {
    "trello": {
      "command": "npx",
      "args": ["@delorenj/mcp-server-trello"],
      "env": {
        "TRELLO_API_KEY": "your-api-key",
        "TRELLO_TOKEN": "your-token"
      }
    }
  }
}
If you're using mise, you can explicitly execute bunx:
{
  "mcpServers": {
    "trello": {
      "command": "mise",
      "args": ["x", "--", "bunx", "@delorenj/mcp-server-trello"],
      "env": {
        "TRELLO_API_KEY": "your-api-key",
        "TRELLO_TOKEN": "your-token"
      }
    }
  }
}
Install globally with npm:
npm install -g @delorenj/mcp-server-trello
Or with Bun:
bun add -g @delorenj/mcp-server-trello
For containerized environments:
git clone https://github.com/delorenj/mcp-server-trello
cd mcp-server-trello
cp .env.template .env
# Edit .env with your credentials
docker compose up --build
To connect to a Trello workspace, you'll need:
https://trello.com/1/authorize?expiration=never&name=YOUR_APP_NAME&scope=read,write&response_type=token&key=YOUR_API_KEY
Replace YOUR_APP_NAME with your application name and YOUR_API_KEY with your API key.
Create a .env file with:
# Required
TRELLO_API_KEY=your-api-key
TRELLO_TOKEN=your-token
# Optional
TRELLO_BOARD_ID=your-board-id
TRELLO_WORKSPACE_ID=your-workspace-id
The server supports multiple ways to work with boards:
boardId in each API callTRELLO_BOARD_ID and override as neededset_active_board to dynamically switch boards// List available boards
{
  name: 'list_boards',
  arguments: {}
}
// Set active board
{
  name: 'set_active_board',
  arguments: {
    boardId: "abc123"
  }
}
// List workspaces
{
  name: 'list_workspaces',
  arguments: {}
}
// Set active workspace
{
  name: 'set_active_workspace',
  arguments: {
    workspaceId: "xyz789"
  }
}
// Check current active board
{
  name: 'get_active_board_info',
  arguments: {}
}
dueDate): Use ISO 8601 format with time (e.g., 2023-12-31T12:00:00Z)start): Use YYYY-MM-DD format (e.g., 2025-08-05)Get comprehensive details of a Trello card:
{
  name: 'get_card',
  arguments: {
    cardId: string,
    includeMarkdown?: boolean
  }
}
{
  name: 'get_cards_by_list_id',
  arguments: {
    boardId?: string,
    listId: string
  }
}
{
  name: 'add_card_to_list',
  arguments: {
    boardId?: string,
    listId: string,
    name: string,
    description?: string,
    dueDate?: string,
    start?: string,
    labels?: string[]
  }
}
{
  name: 'update_card_details',
  arguments: {
    boardId?: string,
    cardId: string,
    name?: string,
    description?: string,
    dueDate?: string,
    start?: string,
    dueComplete?: boolean,
    labels?: string[]
  }
}
{
  name: 'archive_card',
  arguments: {
    boardId?: string,
    cardId: string
  }
}
{
  name: 'move_card',
  arguments: {
    boardId?: string,
    cardId: string,
    listId: string
  }
}
{
  name: 'get_my_cards',
  arguments: {}
}
{
  name: 'get_lists',
  arguments: {
    boardId?: string
  }
}
{
  name: 'add_list_to_board',
  arguments: {
    boardId?: string,
    name: string
  }
}
{
  name: 'archive_list',
  arguments: {
    boardId?: string,
    listId: string
  }
}
{
  name: 'get_recent_activity',
  arguments: {
    boardId?: string,
    limit?: number
  }
}
{
  name: 'list_boards',
  arguments: {}
}
{
  name: 'set_active_board',
  arguments: {
    boardId: string
  }
}
{
  name: 'get_active_board_info',
  arguments: {}
}
{
  name: 'list_workspaces',
  arguments: {}
}
{
  name: 'set_active_workspace',
  arguments: {
    workspaceId: string
  }
}
{
  name: 'list_boards_in_workspace',
  arguments: {
    workspaceId: string
  }
}
{
  name: 'get_checklist_items',
  arguments: {
    name: string,
    boardId?: string
  }
}
{
  name: 'add_checklist_item',
  arguments: {
    text: string,
    checkListName: string,
    boardId?: string
  }
}
{
  name: 'find_checklist_items_by_description',
  arguments: {
    description: string,
    boardId?: string
  }
}
{
  name: 'get_acceptance_criteria',
  arguments: {
    boardId?: string
  }
}
{
  name: 'get_checklist_by_name',
  arguments: {
    name: string,
    boardId?: string
  }
}
{
  name: 'add_comment',
  arguments: {
    cardId: string,
    text: string
  }
}
{
  name: 'update_comment',
  arguments: {
    commentId: string,
    text: string
  }
}
{
  name: 'delete_comment',
  arguments: {
    commentId: string
  }
}
{
  name: 'get_card_comments',
  arguments: {
    cardId: string,
    limit?: number
  }
}
{
  name: 'attach_image_to_card',
  arguments: {
    boardId?: string,
    cardId: string,
    imageUrl: string,
    name?: string
  }
}
{
  name: 'attach_file_to_card',
  arguments: {
    boardId?: string,
    cardId: string,
    fileUrl: string,
    name?: string,
    mimeType?: string
  }
}
You can pair the Trello MCP server with Ideogram MCP server for AI-powered visual content:
{
  "mcpServers": {
    "trello": {
      "command": "bunx",
      "args": ["@delorenj/mcp-server-trello"],
      "env": {
        "TRELLO_API_KEY": "your-trello-api-key",
        "TRELLO_TOKEN": "your-trello-token"
      }
    },
    "ideogram": {
      "command": "bunx",
      "args": ["@flowluap/ideogram-mcp-server"],
      "env": {
        "IDEOGRAM_API_KEY": "your-ideogram-api-key"
      }
    }
  }
}
Example workflow:
// Generate image with ideogram-mcp-server
{
  name: 'generate_image',
  arguments: {
    prompt: "A futuristic dashboard design with neon accents",
    aspect_ratio: "16:9"
  }
}
// Returns: { image_url: "https://..." }
// Attach to Trello card
{
  name: 'attach_image_to_card',
  arguments: {
    cardId: "your-card-id",
    imageUrl: "https://...", // URL from Ideogram
    name: "Dashboard Mockup v1"
  }
}
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "trello" '{"command":"npx","args":["-y","@delorenj/mcp-server-trello"]}'See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:
{
    "mcpServers": {
        "trello": {
            "command": "npx",
            "args": [
                "-y",
                "@delorenj/mcp-server-trello"
            ]
        }
    }
}To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.json2. Add this to your configuration file:
{
    "mcpServers": {
        "trello": {
            "command": "npx",
            "args": [
                "-y",
                "@delorenj/mcp-server-trello"
            ]
        }
    }
}3. Restart Claude Desktop for the changes to take effect