IntegrateIntegrate
Integrations

Trello Integration

Manage Trello boards, lists, cards, comments, and search

The Trello integration provides access to manage Trello boards, lists, cards, comments, and search through the Integrate MCP server.

Installation

The Trello integration is included with the SDK:

import { trelloIntegration } from "integrate-sdk/server";

Setup

Add Trello to your server configuration. Provide credentials via environment variables or integration config:

import { createMCPServer, trelloIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    trelloIntegration({
      // See configuration options below
    }),
  ],
});

Client-Side Usage

import { client } from "integrate-sdk";

const result = await client.trello.getMember({});

console.log(result);

Environment Variables

  • TRELLO_API_KEY (when supported by this integration)

Configuration Options

Prop

Type

Tools

trello_get_member

Get member

Prop

Type

trello_list_boards

List boards

Prop

Type

trello_get_board

Get board

Prop

Type

trello_list_lists

List lists

Prop

Type

trello_get_list

Get list

Prop

Type

trello_list_cards

List cards

Prop

Type

trello_get_card

Get card

Prop

Type

trello_create_card

Create card

Prop

Type

trello_update_card

Update card

Prop

Type

trello_delete_card

Delete card

Prop

Type

trello_add_card_comment

Add card comment

Prop

Type

Search

Prop

Type

Notes

  • Category: Productivity
  • Authentication mode: API key

On this page