# Trello — how to use (mcp.ai)

Trello in natural language: manage boards, lists, cards, comments, checklists and labels. The platform provides the OAuth app, just click Connect and authorize your Trello account. Multiple accounts can be connected to the same MCP.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_trello?ms=1781859360000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `trello_action_get_board_by_id_action`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/trello`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/trello/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/trello/action/get/board/by/id/action` — Deprecated: use `get actions board by id action` instead. retrieves details for the trello board associated with a specific action id, returning board information only.
  - body: { fields?: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/action/get/by/id` — Deprecated: use `get actions by id action` instead. retrieves detailed information about a specific trello action by its id.
  - body: { fields?: string, member?: string, display?: string, entities?: string, idAction: string, memberCreator?: string, member_fields?: string, memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/action/get/list/by/id/action` — Retrieves the trello list associated with a specific trello action id, for actions linked to a list. <<DEPRECATED use get_actions_list_by_id_action>>
  - body: { fields?: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/add/boards` — Creates a new trello board; the 'name' parameter is required for creation, and various preferences can be customized or cloned from a source board.
  - body: { desc?: string, name?: string, closed?: string, powerUps?: string, subscribed?: string, prefs_voting?: string, idBoardSource?: string, prefs__voting?: string, idOrganization?: string, keepFromSource?: string, prefs_comments?: string, prefs_selfJoin?: string, labelNames__red?: string, prefs__comments?: string, prefs__selfJoin?: string, prefs_cardAging?: string, labelNames__blue?: string, prefs__cardAging?: string, prefs_background?: string, prefs_cardCovers?: string, labelNames__green?: string, prefs__background?: string, prefs__cardCovers?: string, prefs_invitations?: string, labelNames__orange?: string, labelNames__purple?: string, labelNames__yellow?: string, prefs__invitations?: string, prefs_permissionLevel?: string, prefs__permissionLevel?: string, prefs__calendarFeedEnabled?: string }
- `POST https://api.mcp.ai/api/trello/add/boards/calendar/key/generate/by/id/board` — Generates a new calendar key for the trello board specified by `idboard`, invalidating any previous key for that board.
  - body: { idBoard: string }
- `POST https://api.mcp.ai/api/trello/add/boards/checklists/by/id/board` — Creates a new, initially empty checklist with a given name on an existing and accessible trello board.
  - body: { name?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/add/boards/email/key/generate/by/id/board` — Generates a new email key for the trello board specified by idboard to enable or reset adding cards via email; this invalidates any previously existing email key for the board.
  - body: { idBoard: string }
- `POST https://api.mcp.ai/api/trello/add/boards/labels/by/id/board` — Creates a new label on an existing trello board.
  - body: { name?: string, color?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/add/boards/lists/by/id/board` — Creates a new, empty list on a specified, existing trello board, typically used as a column or category for organizing cards.
  - body: { pos?: string, name: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/add/boards/mark/as/viewed/by/id/board` — Marks the trello board specified by idboard as viewed for the current user, exclusively updating its viewed status and potentially influencing its position in user-specific lists and notification sett
  - body: { idBoard: string }
- `POST https://api.mcp.ai/api/trello/add/boards/power/ups/by/id/board` — Enables the power-up specified by the 'value' parameter on the board; processes one power-up enablement per call.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/add/cards` — Creates a new card in a trello list; `idlist` is required, and if `idcardsource` is used, the source card must be accessible.
  - body: { due?: string, pos?: string, desc?: string, name?: string, closed?: string, idList?: string, labels?: string, idBoard?: string, idLabels?: string, idMembers?: string, urlSource?: string, fileSource?: string, subscribed?: string, idCardSource?: string, keepFromSource?: string, idAttachmentCover?: string }
- `POST https://api.mcp.ai/api/trello/add/cards/actions/comments/by/id/card` — Adds a new text comment, which can include @mentions, to a trello card specified by its id; file attachments are not supported via this action.
  - body: { text?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/add/cards/attachments/by/id/card` — Adds an attachment to a trello card by `idcard`; specify either a `file` to upload or a `url` to link, but not both.
  - body: { url?: string, file?: string, name?: string, idCard: string, mimeType?: string }
- `POST https://api.mcp.ai/api/trello/add/cards/checklist/check/item/by/id/card/by/id/checklist` — Adds a new check item to an existing checklist on a specific trello card.
  - body: { pos?: string, name?: string, idCard: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/add/cards/checklists/by/id/card` — Adds a checklist to a trello card: use `value` to add a specific existing checklist, `idchecklistsource` to create a new checklist by copying an existing one (optionally using `name` for the new check
  - body: { name?: string, value?: string, idCard: string, idChecklistSource?: string }
- `POST https://api.mcp.ai/api/trello/add/cards/id/labels/by/id/card` — Adds an existing label to a trello card; `idcard` identifies the card and `value` is the id of the label to add. both card and label must already exist.
  - body: { value?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/add/cards/id/members/by/id/card` — Assigns a trello member to a specific trello card by card id (or short link) and member id.
  - body: { value?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/add/cards/labels/by/id/card` — Adds a label to an existing trello card (specified by `idcard`), defining the label by `name` and either `color` or the overriding `value` (which specifies color by name); a new label is created on th
  - body: { name?: string, color?: string, value?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/add/cards/members/voted/by/id/card` — Casts a 'yes' vote for a specified member on a trello card; a member can only vote once per card.
  - body: { value?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/add/cards/stickers/by/id/card` — Adds a sticker to a trello card, using a default sticker name (e.g., 'taco-cool') or a custom sticker id for the image, and allows specifying its position, rotation, and z-index.
  - body: { top?: string, left?: string, image?: string, idCard: string, rotate?: string, zIndex?: string }
- `POST https://api.mcp.ai/api/trello/add/checklists` — Creates a new checklist on a trello card, either by name or by copying from `idchecklistsource`, targeting an `idcard` or `idboard`; this action creates only the checklist structure, not its items.
  - body: { pos?: string, name?: string, idCard?: string, idBoard?: string, idChecklistSource?: string }
- `POST https://api.mcp.ai/api/trello/add/checklists/check/items/by/id/checklist` — Adds a new check item to a specified trello checklist; this action does not update existing check items.
  - body: { pos?: string, name?: string, checked?: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/add/labels` — Creates a new label with a specified name (required) and color on a trello board (idboard required); this action defines the label but does not apply it to cards.
  - body: { name?: string, color?: string, idBoard?: string }
- `POST https://api.mcp.ai/api/trello/add/lists` — Creates a new list on a specified trello board, with options to copy an existing list, set its position, initial state (archived/subscribed), and does not modify existing lists or move cards.
  - body: { pos?: string, name?: string, closed?: string, idBoard?: string, subscribed?: string, idListSource?: string }
- `POST https://api.mcp.ai/api/trello/add/lists/archive/all/cards/by/id/list` — Archives all cards in a trello list; while cards can be restored via the trello interface, this action does not provide an unarchive function.
  - body: { idList: string }
- `POST https://api.mcp.ai/api/trello/add/lists/cards/by/id/list` — Creates a new card in a trello list, which must be specified by an existing and accessible `idlist`.
  - body: { due?: string, desc?: string, name?: string, idList: string, labels?: string, idMembers?: string }
- `POST https://api.mcp.ai/api/trello/add/lists/move/all/cards/by/id/list` — Moves all cards from a trello list to a *different* board; this action is irreversible, moves (not copies) cards, and empties the source list without deleting it.
  - body: { idList: string, idBoard?: string }
- `POST https://api.mcp.ai/api/trello/add/members/avatar/by/id/member` — Updates a trello member's avatar using a base64-encoded image; the `file` field, though schema-optional, requires valid image data for a successful update.
  - body: { file?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/add/members/board/backgrounds/by/id/member` — Adds a new custom board background, from an image file, to a specified trello member's collection, making it available for their use but not applying it to any board.
  - body: { file?: string, tile?: string, idMember: string, brightness?: string }
- `POST https://api.mcp.ai/api/trello/add/members/board/stars/by/id/member` — Stars a trello board for a member (does not remove or list stars), optionally at a specified position; the board must exist and be accessible to the member.
  - body: { pos?: string, idBoard?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/add/members/custom/board/backgrounds/by/id/member` — Adds a new custom board background for a specified trello member; the `file` parameter (image data) is required.
  - body: { file?: string, tile?: string, idMember: string, brightness?: string }
- `POST https://api.mcp.ai/api/trello/add/members/custom/emoji/by/id/member` — Adds a new custom emoji using an image file and a unique name to a trello member's account; this emoji is member-specific and not shared across the workspace.
  - body: { file?: string, name?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/add/members/custom/stickers/by/id/member` — Uploads a custom sticker to a trello member's collection, if the member's plan allows custom stickers and respects associated limits.
  - body: { file?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/add/members/saved/searches/by/id/member` — Creates a new saved search with a specified name, position, and query for a trello member.
  - body: { pos: string, name: string, query: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/add/notifications/all/read` — Marks all trello notifications for the authenticated user as read across all boards; this action is permanent and cannot be undone.
- `POST https://api.mcp.ai/api/trello/add/organizations` — Creates a new trello organization (workspace) with a `displayname` (required), and optionally a description, website, and various preferences (e.g., board visibility, member invitation restrictions).
  - body: { desc?: string, name?: string, website?: string, displayName?: string, prefs__permissionLevel?: string, prefs__associatedDomain?: string, prefs__googleAppsVersion?: string, prefs__orgInviteRestrict?: string, prefs__externalMembersDisabled?: string, prefs__boardVisibilityRestrict__org?: string, prefs__boardVisibilityRestrict__public?: string, prefs__boardVisibilityRestrict__private?: string }
- `POST https://api.mcp.ai/api/trello/add/organizations/logo/by/id/org` — Sets or updates the logo for a trello organization; the provided image file must adhere to trello's format and size restrictions.
  - body: { file?: string, idOrg: string }
- `POST https://api.mcp.ai/api/trello/add/sessions` — Creates or updates a trello user session, optionally linking it to a specific board for status updates and setting the user's activity status.
  - body: { status?: string, idBoard?: string }
- `POST https://api.mcp.ai/api/trello/add/tokens/webhooks/by/token` — Creates a webhook for a trello token to monitor a trello model (`idmodel`) and send notifications to a `callbackurl`, which must be publicly accessible and able to respond to trello's head validation 
  - body: { idModel?: string, callbackURL?: string, description?: string }
- `POST https://api.mcp.ai/api/trello/board/create/board` — <<deprecated: this action is deprecated. please use 'add boards' instead.>> creates a new trello board, requiring the 'name' parameter.
  - body: { desc?: string, name?: string, closed?: string, powerUps?: string, subscribed?: string, prefs_voting?: string, idBoardSource?: string, prefs__voting?: string, idOrganization?: string, keepFromSource?: string, prefs_comments?: string, prefs_selfJoin?: string, labelNames__red?: string, prefs__comments?: string, prefs__selfJoin?: string, prefs_cardAging?: string, labelNames__blue?: string, prefs__cardAging?: string, prefs_background?: string, prefs_cardCovers?: string, labelNames__green?: string, prefs__background?: string, prefs__cardCovers?: string, prefs_invitations?: string, labelNames__orange?: string, labelNames__purple?: string, labelNames__yellow?: string, prefs__invitations?: string, prefs_permissionLevel?: string, prefs__permissionLevel?: string, prefs__calendarFeedEnabled?: string }
- `POST https://api.mcp.ai/api/trello/board/filter/cards/by/id/board` — Deprecated: use `get boards cards by id board by filter`. retrieves cards from a trello board using a filter.
  - body: { filter: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/board/get/by/id` — Fetches comprehensive details for a specific trello board by its id; this is a read-only action. <<DEPRECATED use get_boards_by_id_board>>
  - body: { cards?: string, lists?: string, fields?: string, labels?: string, actions?: string, idBoard: string, members?: string, myPrefs?: string, boardStars?: string, checklists?: string, card_fields?: string, list_fields?: string, memberships?: string, label_fields?: string, labels_limit?: string, organization?: string, action_fields?: string, action_member?: string, actions_limit?: string, actions_since?: string, card_stickers?: string, member_fields?: string, actions_format?: string, membersInvited?: string, actions_display?: string, card_checklists?: string, actions_entities?: string, card_attachments?: string, checklist_fields?: string, memberships_member?: string, organization_fields?: string, action_memberCreator?: string, action_member_fields?: string, membersInvited_fields?: string, card_attachment_fields?: string, organization_memberships?: string, memberships_member_fields?: string, action_memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/board/get/cards/by/id/board` — Deprecated (use `get boards cards by id board`): retrieves cards from an existing trello board, allowing filtering and customization of fields for cards, attachments, and members.
  - body: { limit?: string, since?: string, before?: string, fields?: string, filter?: string, actions?: string, idBoard: string, members?: string, stickers?: string, checklists?: string, attachments?: string, member_fields?: string, checkItemStates?: string, attachment_fields?: string }
- `POST https://api.mcp.ai/api/trello/board/get/lists/by/id/board` — Deprecated: retrieves lists from a specified trello board; use `get boards lists by id board`.
  - body: { cards?: string, fields?: string, filter?: string, idBoard: string, card_fields?: string }
- `POST https://api.mcp.ai/api/trello/card/create/and/update` — (deprecated: use add cards) creates a new card in a trello list; `idlist` is required, and if `idcardsource` is used, the source card must be accessible.
  - body: { due?: string, pos?: string, desc?: string, name?: string, closed?: string, idList?: string, labels?: string, idBoard?: string, idLabels?: string, idMembers?: string, urlSource?: string, fileSource?: string, subscribed?: string, idCardSource?: string, keepFromSource?: string, idAttachmentCover?: string }
- `POST https://api.mcp.ai/api/trello/card/get/by/id` — Deprecated: use `get cards by id card`. retrieves a trello card by id/shortlink, with options for related data.
  - body: { list?: string, board?: string, fields?: string, idCard: string, actions?: string, members?: string, stickers?: string, checklists?: string, attachments?: string, list_fields?: string, board_fields?: string, membersVoted?: string, action_fields?: string, actions_limit?: string, member_fields?: string, sticker_fields?: string, actions_display?: string, checkItemStates?: string, actions_entities?: string, checklist_fields?: string, attachment_fields?: string, memberVoted_fields?: string, checkItemState_fields?: string, action_memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/card/get/by/id/field` — (deprecated: use `get cards by id card by field` instead) retrieves the value of a single, specified field from a trello card.
  - body: { field: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/card/update/by/id/card` — Updates an existing trello card's attributes like name, description, due date, members, labels, position, or archives/unarchives it, attaches files, or changes its cover. <<DEPRECATED use update_cards
  - body: { due?: string, pos?: string, desc?: string, name?: string, closed?: string, idCard: string, idList?: string, labels?: string, idBoard?: string, idLabels?: string, idMembers?: string, urlSource?: string, fileSource?: string, subscribed?: string, idCardSource?: string, keepFromSource?: string, idAttachmentCover?: string }
- `POST https://api.mcp.ai/api/trello/card/update/id/list/by/id/card` — Deprecated: moves a trello card to a different list on the same board. use `update cards id list by id card` instead.
  - body: { value?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/card/update/pos/by/id/card` — Updates a trello card's position within its list to 'top', 'bottom', or a specified 1-indexed positive integer.<<DEPRECATED use update_cards_pos_by_id_card>>
  - body: { value?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/convert/checklist/item/to/card` — Converts a checklist item into a new card (useful for promoting a subtask), which inherits some properties from the item; this is irreversible via the api and offers no customization during conversion
  - body: { idCard: string, idCheckItem: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/delete/actions/by/id/action` — Deletes a specific trello action, such as a `commentcard`, by its id; this is an irreversible operation and only applies to deletable action types, as many (especially system-generated) actions cannot
  - body: { idAction: string }
- `POST https://api.mcp.ai/api/trello/delete/boards/members/by/id/board/by/id/member` — Permanently removes a current member from a trello board, revoking their access; this action is irreversible.
  - body: { idBoard: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/delete/boards/power/ups/by/id/board/by/power/up` — Disables a power-up on a trello board using the board's id and the plugin id of a power-up currently enabled on that board; this action is irreversible and may result in data loss.
  - body: { idBoard: string, powerUp: string }
- `POST https://api.mcp.ai/api/trello/delete/cards/actions/comments/by/id/card/by/id/action` — Deletes a specific comment action (identified by `idaction`) from a trello card (identified by `idcard`); this operation is irreversible and only affects comments.
  - body: { idCard: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/delete/cards/attachments/by/id/card/by/id/attachment` — Permanently removes a specified attachment from a trello card; this action is irreversible and requires that both the card and the attachment exist.
  - body: { idCard: string, idAttachment: string }
- `POST https://api.mcp.ai/api/trello/delete/cards/by/id/card` — Permanently deletes an archived trello card specified by its `idcard`.
  - body: { idCard: string }
- `POST https://api.mcp.ai/api/trello/delete/cards/checklists/by/id/card/by/id/checklist` — Permanently deletes a specific checklist from a trello card.
  - body: { idCard: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/delete/cards/id/labels/by/id/card/by/id/label` — Removes a specific label from a trello card; the label itself is not deleted from the board, only its association with the card.
  - body: { idCard: string, idLabel: string }
- `POST https://api.mcp.ai/api/trello/delete/cards/id/members/by/id/card/by/id/member` — Removes a currently assigned member from a trello card, affecting only the card's member list and not the member's board membership or overall permissions.
  - body: { idCard: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/delete/cards/labels/by/id/card/by/color` — Permanently removes a specific `color` label from an existing trello card identified by `idcard`, if the card has that label; this only disassociates the label from the card, not deleting the label de
  - body: { color: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/delete/cards/members/voted/by/id/card/by/id/member` — Removes a member's vote from a trello card; this operation is irreversible and does not confirm if the vote existed prior to removal.
  - body: { idCard: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/delete/cards/stickers/by/id/card/by/id/sticker` — Permanently removes a specific sticker (identified by `idsticker`) from a trello card (identified by `idcard`).
  - body: { idCard: string, idSticker: string }
- `POST https://api.mcp.ai/api/trello/delete/checklist/item` — Permanently deletes a specific check item from a checklist on a trello card; this operation is irreversible and only affects the specified item, not the entire checklist.
  - body: { idCheckItem: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/delete/checklists/by/id/checklist` — Permanently and irreversibly deletes a trello checklist and all its items using the `idchecklist`.
  - body: { idChecklist: string }
- `POST https://api.mcp.ai/api/trello/delete/labels/by/id/label` — Permanently deletes an existing label from a trello board by its id; this operation is irreversible via the api.
  - body: { idLabel: string }
- `POST https://api.mcp.ai/api/trello/delete/member/board/background` — Permanently deletes a specific custom board background belonging to the specified trello member; this operation cannot be undone.
  - body: { idMember: string, idBoardBackground: string }
- `POST https://api.mcp.ai/api/trello/delete/member/custom/sticker` — Deletes a custom sticker from a trello member's collection; this permanent action is only available for custom stickers within a trello workspace on a paid plan.
  - body: { idMember: string, idCustomSticker: string }
- `POST https://api.mcp.ai/api/trello/delete/member/saved/search` — Permanently deletes a specific saved search for a trello member, used when the search is outdated or no longer needed.
  - body: { idMember: string, idSavedSearch: string }
- `POST https://api.mcp.ai/api/trello/delete/members/board/stars/by/id/member/by/id/board/star` — Removes a specific starred board (identified by `idboardstar`) from a trello member's (identified by `idmember`) list of favorites; `idboardstar` must be an existing star for that member.
  - body: { idMember: string, idBoardStar: string }
- `POST https://api.mcp.ai/api/trello/delete/org/associated/domain` — Irreversibly deletes an associated email domain from a trello organization's preferences to update email domain restrictions for workspace membership; the domain must be currently associated for remov
  - body: { idOrg: string }
- `POST https://api.mcp.ai/api/trello/delete/organizations/by/id/org` — Permanently deletes a trello organization and all its associated data; this action is irreversible and requires caution.
  - body: { idOrg: string }
- `POST https://api.mcp.ai/api/trello/delete/organizations/logo/by/id/org` — Deletes an existing trello organization's custom logo, restoring its default and leaving other settings unchanged; if no custom logo exists, it succeeds without effect.
  - body: { idOrg: string }
- `POST https://api.mcp.ai/api/trello/delete/organizations/members/all/by/id/org/by/id/member` — Removes a member entirely from a specific trello organization, including from all its boards and cards; this action is permanent and does not delete the member's trello account.
  - body: { idOrg: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/delete/organizations/members/by/id/org/by/id/member` — Permanently removes a member from a trello organization by id, revoking all access to its content; re-invitation is required for renewed access, and this does not delete the member's trello account.
  - body: { idOrg: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/delete/organizations/prefs/org/invite/restrict/by/id/org` — Removes a previously set email domain invitation restriction for a trello organization.
  - body: { idOrg: string, value: string }
- `POST https://api.mcp.ai/api/trello/delete/tokens/by/token` — Deletes a specific trello api token, identified by its value in the path, permanently revoking its access; this action is irreversible and used to invalidate compromised or unneeded tokens.
- `POST https://api.mcp.ai/api/trello/delete/tokens/webhooks/by/token/by/id/webhook` — Deletes an existing webhook, specified by its `idwebhook`, thereby stopping its notifications.
  - body: { idWebhook: string }
- `POST https://api.mcp.ai/api/trello/delete/webhooks/by/id/webhook` — Permanently deletes an existing trello webhook by its `idwebhook`, an irreversible action that stops future notifications.
  - body: { idWebhook: string }
- `POST https://api.mcp.ai/api/trello/dismiss/member/message` — Dismisses a specific one-time message for an existing trello member, preventing it from being displayed again.
  - body: { value?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/get/actions/board/by/id/action` — Retrieves details for the trello board associated with a specific action id, returning board information only.
  - body: { fields?: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/get/actions/board/by/id/action/by/field` — Retrieves a specified `field` from the trello board associated with the provided trello `idaction`.
  - body: { field: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/get/actions/by/id/action` — Retrieves detailed information about a specific trello action by its id.
  - body: { fields?: string, member?: string, display?: string, entities?: string, idAction: string, memberCreator?: string, member_fields?: string, memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/actions/by/id/action/by/field` — Retrieves the value of a specific field (e.g., 'data', 'date', 'type') from a trello action using its unique id.
  - body: { field: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/get/actions/card/by/id/action` — Retrieves trello card details for a given `idaction`, which must be an action specifically linked to a card; returns only card data, not action details.
  - body: { fields?: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/get/actions/card/by/id/action/by/field` — Retrieves a specific field from the trello card associated with the given action id.
  - body: { field: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/get/actions/display/by/id/action` — Retrieves a display-friendly representation of an existing and accessible trello action for ui/report purposes, providing presentation-focused data instead of full raw details and without altering the
  - body: { idAction: string }
- `POST https://api.mcp.ai/api/trello/get/actions/entities/by/id/action` — Retrieves all entities (e.g., boards, lists, cards, members) associated with a specific, existing trello action id.
  - body: { idAction: string }
- `POST https://api.mcp.ai/api/trello/get/actions/list/by/id/action` — Retrieves the trello list associated with a specific trello action id, for actions linked to a list.
  - body: { fields?: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/get/actions/list/by/id/action/by/field` — Retrieves a specific field of the list associated with a trello action, returning only that single field's value.
  - body: { field: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/get/actions/member/by/id/action` — Retrieves specified details of the trello member who performed the action identified by `idaction`; information is specific to this action's context, not the member's full profile.
  - body: { fields?: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/get/actions/member/by/id/action/by/field` — Fetches a specific field of a member for a trello action, returning only one field per call for optimized data retrieval.
  - body: { field: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/get/actions/member/creator/by/id/action` — Retrieves details about the trello member who created the action with the given `idaction`.
  - body: { fields?: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/get/actions/member/creator/by/id/action/by/field` — Gets information about the creator of a trello action.
  - body: { field: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/get/actions/organization/by/id/action` — Fetches the organization details for a given trello action, if the action has an associated organization.
  - body: { fields?: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/get/actions/organization/by/id/action/by/field` — Retrieves the value of a specific `field` for the organization associated with a trello `idaction`; use if the action has an organization and you need only that field (e.g., 'name', 'id', 'url').
  - body: { field: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/get/batch` — Executes multiple trello api get requests in a single batch operation for efficient bulk data retrieval.
  - body: { urls: string }
- `POST https://api.mcp.ai/api/trello/get/boards/actions/by/id/board` — Retrieves actions (e.g., card creations, comments) for a trello board by its id, useful for activity tracking; the board must exist.
  - body: { page?: string, limit?: string, since?: string, before?: string, fields?: string, filter?: string, format?: string, member?: string, display?: string, idBoard: string, entities?: string, idModels?: string, memberCreator?: string, member_fields?: string, memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/boards/board/stars/by/id/board` — Retrieves board stars (user-marked favorites) for a specified trello board, where `idboard` must be an existing board; use to list a user's starred boards or all stars on a particular board.
  - body: { filter?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/get/boards/by/id/board` — Fetches comprehensive details for a specific trello board by its id; this is a read-only action.
  - body: { cards?: string, lists?: string, fields?: string, labels?: string, actions?: string, idBoard: string, members?: string, myPrefs?: string, boardStars?: string, checklists?: string, card_fields?: string, list_fields?: string, memberships?: string, label_fields?: string, labels_limit?: string, organization?: string, action_fields?: string, action_member?: string, actions_limit?: string, actions_since?: string, card_stickers?: string, member_fields?: string, actions_format?: string, membersInvited?: string, actions_display?: string, card_checklists?: string, actions_entities?: string, card_attachments?: string, checklist_fields?: string, memberships_member?: string, organization_fields?: string, action_memberCreator?: string, action_member_fields?: string, membersInvited_fields?: string, card_attachment_fields?: string, organization_memberships?: string, memberships_member_fields?: string, action_memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/boards/by/id/board/by/field` — Retrieves the value of a single, specified field from a trello board.
  - body: { field: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/get/boards/cards/by/id/board` — Retrieves cards from an existing trello board, allowing filtering and customization of fields for cards, attachments, and members.
  - body: { limit?: string, since?: string, before?: string, fields?: string, filter?: string, actions?: string, idBoard: string, members?: string, stickers?: string, checklists?: string, attachments?: string, member_fields?: string, checkItemStates?: string, attachment_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/boards/cards/by/id/board/by/filter` — Retrieves cards from a specified trello board, filtered by 'all', 'closed', 'none', 'open', or 'visible'.
  - body: { filter: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/get/boards/cards/by/id/board/by/id/card` — Retrieves details for a specific trello card by its id and its parent board's id, with options to customize returned fields for the card and associated data like attachments, actions, members, and che
  - body: { fields?: string, idCard: string, labels?: string, actions?: string, idBoard: string, members?: string, checklists?: string, attachments?: string, action_fields?: string, actions_limit?: string, member_fields?: string, actions_display?: string, checkItemStates?: string, actions_entities?: string, checklist_fields?: string, attachment_fields?: string, checkItemState_fields?: string, action_memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/boards/checklists/by/id/board` — Retrieves checklists (primarily structure/metadata, not detailed item history) from a trello board, with options to include associated card and check item details and to control which fields are retur
  - body: { cards?: string, fields?: string, filter?: string, idBoard: string, checkItems?: string, card_fields?: string, checkItem_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/boards/deltas/by/id/board` — Retrieves recent changes (deltas) for a trello board by its id, allowing tracking of modifications since a specified update sequence number (`ixlastupdate`).
  - body: { tags: string, idBoard: string, ixLastUpdate: string }
- `POST https://api.mcp.ai/api/trello/get/boards/labels/by/id/board` — Fetches labels for a specified trello board, aiding in its organization or label management; this action does not detail per-card label usage.
  - body: { limit?: string, fields?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/get/boards/labels/by/id/board/by/id/label` — Fetches specified fields for a specific label on a trello board; this read-only action does not return information about which cards the label is attached to.
  - body: { fields?: string, idBoard: string, idLabel: string }
- `POST https://api.mcp.ai/api/trello/get/boards/lists/by/id/board` — Retrieves lists from a specified trello board, with options to filter lists and include card details.
  - body: { cards?: string, fields?: string, filter?: string, idBoard: string, card_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/boards/lists/by/id/board/by/filter` — Fetches lists by status from an accessible trello board; card details for these lists require a separate call.
  - body: { filter: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/get/boards/members/by/id/board` — Retrieves members of a trello board, with options to filter the list and select specific member fields to return.
  - body: { fields?: string, filter?: string, idBoard: string, activity?: string }
- `POST https://api.mcp.ai/api/trello/get/boards/members/by/id/board/by/filter` — Retrieves members of a trello board using a specified filter, assuming the board exists and the filter is valid.
  - body: { filter: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/get/boards/members/cards/by/id/board/by/id/member` — Retrieves cards for a member on a board, with options to customize returned fields and related data; member must have board access.
  - body: { list?: string, board?: string, fields?: string, filter?: string, actions?: string, idBoard: string, members?: string, idMember: string, checklists?: string, attachments?: string, list_fields?: string, board_fields?: string, member_fields?: string, checkItemStates?: string, attachment_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/boards/members/invited/by/id/board` — Retrieves a list of members invited to a specific trello board who have not yet joined.
  - body: { fields?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/get/boards/members/invited/by/id/board/by/field` — Retrieves a specific field (e.g., email, username) for members who have been invited to a trello board but have not yet joined.
  - body: { field: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/get/boards/memberships/by/id/board` — Retrieves trello board memberships (user roles and permissions) for auditing access or managing collaboration, returning only membership data and not other board content.
  - body: { filter?: string, member?: string, idBoard: string, member_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/boards/memberships/by/id/board/by/id/membership` — Retrieves a specific membership on a trello board by its id, optionally including member details.
  - body: { member?: string, idBoard: string, idMembership: string, member_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/boards/my/prefs/by/id/board` — Retrieves the authenticated user's preferences for a specific trello board.
  - body: { idBoard: string }
- `POST https://api.mcp.ai/api/trello/get/boards/organization/by/id/board` — Fetches information about the trello workspace (organization) to which a specific board belongs, returning details for the workspace only, not the board itself or its content.
  - body: { fields?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/get/boards/organization/by/id/board/by/field` — Retrieves a specific field from the organization associated with a trello board, useful for obtaining targeted details without fetching the entire organization object.
  - body: { field: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/get/cards/actions/by/id/card` — Retrieves the history of actions (e.g., comments, updates, moves) for a trello card specified by `idcard`; the card must exist and very old actions might not be available.
  - body: { page?: string, limit?: string, since?: string, before?: string, fields?: string, filter?: string, format?: string, idCard: string, member?: string, display?: string, entities?: string, idModels?: string, memberCreator?: string, member_fields?: string, memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/cards/attachments/by/id/card` — Retrieves attachments for a trello card.
  - body: { fields?: string, filter?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/get/cards/attachments/by/id/card/by/id/attachment` — Retrieves a specific attachment from a trello card by card id and attachment id.
  - body: { fields?: string, idCard: string, idAttachment: string }
- `POST https://api.mcp.ai/api/trello/get/cards/board/by/id/card` — Fetches detailed information about the trello board to which a specific, existing, and accessible card belongs, using the card's id or short link.
  - body: { fields?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/get/cards/board/by/id/card/by/field` — Retrieves a specific field from the board associated with a given trello card.
  - body: { field: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/get/cards/by/id/card` — Retrieves a trello card by its id or shortlink, with options to include related data like actions, attachments, members, and checklists.
  - body: { list?: string, board?: string, fields?: string, idCard: string, actions?: string, members?: string, stickers?: string, checklists?: string, attachments?: string, list_fields?: string, board_fields?: string, membersVoted?: string, action_fields?: string, actions_limit?: string, member_fields?: string, sticker_fields?: string, actions_display?: string, checkItemStates?: string, actions_entities?: string, checklist_fields?: string, attachment_fields?: string, memberVoted_fields?: string, checkItemState_fields?: string, action_memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/cards/by/id/card/by/field` — Retrieves the value of a single, specified field from a trello card.
  - body: { field: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/get/cards/check/item/states/by/id/card` — Gets the states (e.g., 'complete', 'incomplete') of checklist items on a trello card; returns only item states, not full checklist or card details.
  - body: { fields?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/get/cards/checklists/by/id/card` — Retrieves all checklists, including their check items, for a trello card specified by its id or shortlink, if the card exists and is accessible.
  - body: { cards?: string, fields?: string, filter?: string, idCard: string, checkItems?: string, card_fields?: string, checkItem_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/cards/list/by/id/card` — Gets the trello list to which a specified card (which must exist) belongs.
  - body: { fields?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/get/cards/list/by/id/card/by/field` — Fetches a specific field from the trello list that a given card belongs to.
  - body: { field: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/get/cards/members/by/id/card` — Retrieves members of a trello card, identified by its id or shortlink, allowing customization of which member fields are returned.
  - body: { fields?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/get/cards/members/voted/by/id/card` — Fetches members who voted on a trello card; requires an existing card id, the voting power-up to be active on the board, and members to have voted; returns member details, not vote counts.
  - body: { fields?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/get/cards/stickers/by/id/card` — Retrieves all visual stickers (used for categorization, emphasis, or decoration) from an existing and accessible trello card; this read-only action does not affect other card elements.
  - body: { fields?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/get/cards/stickers/by/id/card/by/id/sticker` — Call this action to retrieve detailed properties (like image, position, rotation) of a specific sticker on a trello card.
  - body: { fields?: string, idCard: string, idSticker: string }
- `POST https://api.mcp.ai/api/trello/get/check/item/by/id` — Retrieves a specific check item from a checklist using the checklist id and check item id.
  - body: { fields?: string, idCheckItem: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/get/checklists/board/by/id/checklist` — Retrieves the trello board a specific checklist belongs to, using the checklist id.
  - body: { fields?: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/get/checklists/board/by/id/checklist/by/field` — Retrieves a specified `field` (e.g., 'name', 'desc') from the trello board associated with the given `idchecklist`.
  - body: { field: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/get/checklists/by/id/checklist` — Fetches a trello checklist by its `idchecklist`, requiring the id to refer to an existing checklist, and allows specifying which details of the checklist, its cards, and check items are returned.
  - body: { cards?: string, fields?: string, checkItems?: string, card_fields?: string, idChecklist: string, checkItem_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/checklists/by/id/checklist/by/field` — Retrieves a specific field's value from a trello checklist by its id and the field name, without loading the entire checklist object or its items.
  - body: { field: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/get/checklists/cards/by/id/checklist` — Retrieves cards associated with a specific, valid trello checklist id, allowing for filtering and customization of card and related entity data fields.
  - body: { limit?: string, since?: string, before?: string, fields?: string, filter?: string, actions?: string, members?: string, stickers?: string, checklists?: string, attachments?: string, idChecklist: string, member_fields?: string, checkItemStates?: string, attachment_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/checklists/cards/by/id/checklist/by/filter` — Retrieves cards from a specified trello checklist, filterable by card id or status (e.g., 'all', 'open'), noting the response is a single card object even if the filter could match multiple cards.
  - body: { filter: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/get/checklists/check/items/by/id/checklist` — Retrieves check items from an existing trello checklist, optionally filtering them and specifying which fields to return.
  - body: { fields?: string, filter?: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/get/labels/board/by/id/label` — Retrieves the trello board to which a given, valid trello label id (`idlabel`) belongs.
  - body: { fields?: string, idLabel: string }
- `POST https://api.mcp.ai/api/trello/get/labels/board/by/id/label/by/field` — Retrieves a specified `field` (e.g., 'name', 'url') from the trello board associated with a given `idlabel`.
  - body: { field: string, idLabel: string }
- `POST https://api.mcp.ai/api/trello/get/labels/by/id/label` — Retrieves detailed information for a specific trello label by its id, allowing selection of specific fields to return.
  - body: { fields?: string, idLabel: string }
- `POST https://api.mcp.ai/api/trello/get/lists/actions/by/id/list` — Retrieves actions (like card movements or comments, newest first) for a trello list by its id, to track history or create activity logs.
  - body: { page?: string, limit?: string, since?: string, before?: string, fields?: string, filter?: string, format?: string, idList: string, member?: string, display?: string, entities?: string, idModels?: string, memberCreator?: string, member_fields?: string, memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/lists/board/by/id/list` — Retrieves the board to which a specific trello list belongs.
  - body: { fields?: string, idList: string }
- `POST https://api.mcp.ai/api/trello/get/lists/board/by/id/list/by/field` — Retrieves a specific field (e.g., 'name', 'desc', 'url') from the trello board associated with a given list id, useful when the board's id is not directly known.
  - body: { field: string, idList: string }
- `POST https://api.mcp.ai/api/trello/get/lists/by/id/list` — Retrieves a trello list by its unique id, optionally including details for its cards and parent board.
  - body: { board?: string, cards?: string, fields?: string, idList: string, card_fields?: string, board_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/lists/by/id/list/by/field` — Fetches the value of a single, specified field from a trello list.
  - body: { field: string, idList: string }
- `POST https://api.mcp.ai/api/trello/get/lists/cards/by/id/list` — Fetches cards from a trello list by its id, with options to filter and customize the returned card data.
  - body: { limit?: string, since?: string, before?: string, fields?: string, filter?: string, idList: string, actions?: string, members?: string, stickers?: string, checklists?: string, attachments?: string, member_fields?: string, checkItemStates?: string, attachment_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/lists/cards/by/id/list/by/filter` — Retrieves cards from a specific trello list, filtered by criteria like 'open', 'closed', or 'all'.
  - body: { filter: string, idList: string }
- `POST https://api.mcp.ai/api/trello/get/member/board/background` — Retrieves a specific custom board background for a trello member, using the member's id and the board background's id.
  - body: { fields?: string, idMember: string, idBoardBackground: string }
- `POST https://api.mcp.ai/api/trello/get/member/custom/bg` — Retrieves metadata (e.g., brightness, urls, tiling status) for a specific custom board background of a trello member, not the image file itself.
  - body: { fields?: string, idMember: string, idBoardBackground: string }
- `POST https://api.mcp.ai/api/trello/get/member/custom/emoji` — Retrieves a specific custom emoji by its id for a trello member, requiring that both the member and emoji exist and are associated.
  - body: { fields?: string, idMember: string, idCustomEmoji: string }
- `POST https://api.mcp.ai/api/trello/get/member/custom/sticker` — Retrieves a specific custom sticker by id for a trello member; returns only sticker data (not its usage on cards/boards), with optional field selection.
  - body: { fields?: string, idMember: string, idCustomSticker: string }
- `POST https://api.mcp.ai/api/trello/get/member/saved/search` — Fetches the details of a specific saved search for a trello member; this does not execute the search.
  - body: { idMember: string, idSavedSearch: string }
- `POST https://api.mcp.ai/api/trello/get/members/actions/by/id/member` — Retrieves a list of actions for a specified trello member, allowing filtering by type, date, models, and control over output format and fields.
  - body: { page?: string, limit?: string, since?: string, before?: string, fields?: string, filter?: string, format?: string, member?: string, display?: string, entities?: string, idMember: string, idModels?: string, memberCreator?: string, member_fields?: string, memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/members/board/backgrounds/by/id/member` — Fetches the board backgrounds for a specified trello member.
  - body: { filter?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/get/members/board/stars/by/id/member` — Fetches only the boards a specific trello member has starred, identified by their id or username.
  - body: { idMember: string }
- `POST https://api.mcp.ai/api/trello/get/members/board/stars/by/id/member/by/id/board/star` — Retrieves detailed information about a specific board star (a trello board marked as a favorite) for a given trello member.
  - body: { idMember: string, idBoardStar: string }
- `POST https://api.mcp.ai/api/trello/get/members/boards/by/id/member` — Retrieves board-level details (not lists/cards) for trello boards associated with a member id or username, allowing extensive customization of the returned data.
  - body: { lists?: string, fields?: string, filter?: string, actions?: string, idMember: string, memberships?: string, organization?: string, action_fields?: string, actions_limit?: string, actions_since?: string, actions_format?: string, actions_entities?: string, organization_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/members/boards/by/id/member/by/filter` — Retrieves a list of boards for a specific trello member, applying a filter such as 'open', 'starred', or 'all'.
  - body: { filter?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/get/members/boards/invited/by/id/member` — Retrieves trello boards to which a specific member has been invited but has not yet joined.
  - body: { fields?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/get/members/boards/invited/by/id/member/by/field` — Retrieves a specific field from trello boards to which a member has been invited but not yet joined; returns an empty result for no pending invitations.
  - body: { field: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/get/members/by/id/member` — Fetches comprehensive information about a trello member, specified by id or username, including profile, activities, boards, cards, notifications, and organization affiliations, with customizable deta
  - body: { cards?: string, boards?: string, fields?: string, tokens?: string, actions?: string, idMember: string, boardStars?: string, board_lists?: string, card_fields?: string, customEmoji?: string, action_since?: string, board_fields?: string, card_members?: string, paid_account?: string, action_before?: string, action_fields?: string, actions_limit?: string, board_actions?: string, boardsInvited?: string, card_stickers?: string, notifications?: string, organizations?: string, savedSearches?: string, customStickers?: string, actions_display?: string, actions_entities?: string, boardBackgrounds?: string, card_attachments?: string, board_memberships?: string, board_organization?: string, card_member_fields?: string, notification_since?: string, board_action_fields?: string, board_actions_limit?: string, board_actions_since?: string, notification_before?: string, notification_fields?: string, notifications_limit?: string, organization_fields?: string, board_actions_format?: string, boardsInvited_fields?: string, organizationsInvited?: string, board_actions_display?: string, notifications_display?: string, board_actions_entities?: string, card_attachment_fields?: string, customBoardBackgrounds?: string, notifications_entities?: string, board_organization_fields?: string, organization_paid_account?: string, notification_memberCreator?: string, organizationsInvited_fields?: string, notification_memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/members/by/id/member/by/field` — Efficiently retrieves a specific field (e.g., fullname, username, bio) of a trello member using their id or username, without fetching the entire member profile.
  - body: { field: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/get/members/cards/by/id/member` — Retrieves cards for a trello member, specified by id or username, with options to filter cards and include related data like actions, attachments, and checklists.
  - body: { limit?: string, since?: string, before?: string, fields?: string, filter?: string, actions?: string, members?: string, idMember: string, stickers?: string, checklists?: string, attachments?: string, member_fields?: string, checkItemStates?: string, attachment_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/members/cards/by/id/member/by/filter` — Retrieves cards for a trello member, applying a filter that must be a trello-recognized card filter.
  - body: { filter: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/get/members/custom/board/backgrounds/by/id/member` — Retrieves custom board backgrounds for a trello member, who must exist, using their id or username.
  - body: { filter?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/get/members/custom/emoji/by/id/member` — Retrieves all custom (user-specific, non-standard) emojis that a specified trello member has created or can access.
  - body: { filter?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/get/members/custom/stickers/by/id/member` — Retrieves a member's custom stickers, which are unique personalized stickers created by them, distinct from standard trello stickers.
  - body: { filter?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/get/members/deltas/by/id/member` — Retrieves a chronological list of all changes (deltas) made by a specific trello member, including modifications to boards, lists, and cards, to audit activity or sync data.
  - body: { tags: string, idMember: string, ixLastUpdate: string }
- `POST https://api.mcp.ai/api/trello/get/members/notifications/by/id/member` — Retrieves notifications for a trello member, specified by their id or username, with options for filtering and pagination.
  - body: { page?: string, limit?: string, since?: string, before?: string, fields?: string, filter?: string, display?: string, entities?: string, idMember: string, read_filter?: string, memberCreator?: string, memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/members/notifications/by/id/member/by/filter` — Retrieves a list of a trello member's notifications, filtered by specified types.
  - body: { filter: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/get/members/organizations/by/id/member` — Fetches organizations a specific trello member belongs to; the `idmember` must be an id or username of an existing trello member.
  - body: { fields?: string, filter?: string, idMember: string, paid_account?: string }
- `POST https://api.mcp.ai/api/trello/get/members/organizations/by/id/member/by/filter` — Fetches a list of organizations a specific trello member belongs to, using a filter to narrow down the results.
  - body: { filter: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/get/members/organizations/invited/by/id/member` — Retrieves organizations a trello member has been invited to but has not yet accepted or declined.
  - body: { fields?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/get/members/organizations/invited/by/id/member/by/field` — Get a specific field of an organization to which the member has a pending invitation; returns data only if such an invitation exists.
  - body: { field: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/get/members/saved/searches/by/id/member` — Retrieves all saved search queries for a trello member; this action only retrieves saved searches and does not execute them.
  - body: { idMember: string }
- `POST https://api.mcp.ai/api/trello/get/members/tokens/by/id/member` — Gets api token metadata for a trello member; actual token values are excluded for security.
  - body: { filter?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/get/notif/creator/field` — Fetches a specific field of the member who created the specified trello notification.
  - body: { field: string, idNotification: string }
- `POST https://api.mcp.ai/api/trello/get/notification/org/field` — Retrieves a specific field from the trello organization associated with a given notification, provided the notification is linked to an organization.
  - body: { field: string, idNotification: string }
- `POST https://api.mcp.ai/api/trello/get/notifications/board/by/id/notification` — Gets the trello board associated with a given notification id, returning only board data and allowing selection of specific board fields.
  - body: { fields?: string, idNotification: string }
- `POST https://api.mcp.ai/api/trello/get/notifications/board/by/id/notification/by/field` — Retrieves a specific, valid field from the board associated with a trello notification.
  - body: { field: string, idNotification: string }
- `POST https://api.mcp.ai/api/trello/get/notifications/by/id/notification` — Retrieves a specific trello notification by its id, optionally including related entities and specific fields for the notification and its related entities.
  - body: { card?: string, list?: string, board?: string, fields?: string, member?: string, display?: string, entities?: string, card_fields?: string, board_fields?: string, organization?: string, memberCreator?: string, member_fields?: string, idNotification: string, organization_fields?: string, memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/notifications/by/id/notification/by/field` — Retrieves a specific field from a trello notification.
  - body: { field: string, idNotification: string }
- `POST https://api.mcp.ai/api/trello/get/notifications/card/by/id/notification` — Retrieves card details (excluding notification, board, or list data) for a specified trello idnotification, which must exist and be linked to a card.
  - body: { fields?: string, idNotification: string }
- `POST https://api.mcp.ai/api/trello/get/notifications/card/by/id/notification/by/field` — Retrieves a specific field of a trello card, using the id of a notification that is directly associated with that card.
  - body: { field: string, idNotification: string }
- `POST https://api.mcp.ai/api/trello/get/notifications/display/by/id/notification` — Retrieves the information needed to display an existing trello notification, identified by its id, without altering the notification or fetching its complete metadata.
  - body: { idNotification: string }
- `POST https://api.mcp.ai/api/trello/get/notifications/entities/by/id/notification` — Retrieves trello entities (e.g., boards, cards, lists, members) linked to a specific notification id, focusing on the related entities rather than the notification details itself.
  - body: { idNotification: string }
- `POST https://api.mcp.ai/api/trello/get/notifications/list/by/id/notification` — Retrieves details of the trello list associated with a specific notification id.
  - body: { fields?: string, idNotification: string }
- `POST https://api.mcp.ai/api/trello/get/notifications/list/by/id/notification/by/field` — Efficiently retrieves a single specified field from a trello list linked to a notification, avoiding fetching the entire list.
  - body: { field: string, idNotification: string }
- `POST https://api.mcp.ai/api/trello/get/notifications/member/by/id/notification` — Fetches details of the member (not the notification content itself) associated with a specific trello notification id.
  - body: { fields?: string, idNotification: string }
- `POST https://api.mcp.ai/api/trello/get/notifications/member/by/id/notification/by/field` — Retrieves a specific `field` of the trello member associated with the given `idnotification`.
  - body: { field: string, idNotification: string }
- `POST https://api.mcp.ai/api/trello/get/notifications/member/creator/by/id/notification` — Fetches the creator (member) of a trello notification, identified by `idnotification`, returning only creator details and respecting trello privacy settings and user permissions.
  - body: { fields?: string, idNotification: string }
- `POST https://api.mcp.ai/api/trello/get/notifications/organization/by/id/notification` — Retrieves the trello organization linked to a specific notification id; returns organization details only, not the notification itself.
  - body: { fields?: string, idNotification: string }
- `POST https://api.mcp.ai/api/trello/get/organizations/actions/by/id/org` — Retrieves a log of actions (e.g., card creations, list movements, comments) for a specified trello organization, filterable by type, date range, and models; `idorg` must be a valid organization id/nam
  - body: { page?: string, idOrg: string, limit?: string, since?: string, before?: string, fields?: string, filter?: string, format?: string, member?: string, display?: string, entities?: string, idModels?: string, memberCreator?: string, member_fields?: string, memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/organizations/boards/by/id/org` — Fetches boards for a trello organization, specified by its id or name, with options to filter and customize returned data.
  - body: { idOrg: string, lists?: string, fields?: string, filter?: string, actions?: string, memberships?: string, organization?: string, action_fields?: string, actions_limit?: string, actions_since?: string, actions_format?: string, actions_entities?: string, organization_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/organizations/boards/by/id/org/by/filter` — Fetches a list of boards belonging to a specific trello organization, filtered by a given criterion.
  - body: { idOrg: string, filter: string }
- `POST https://api.mcp.ai/api/trello/get/organizations/by/id/org` — Retrieves detailed information about a specific trello organization, including optional related resources like members, boards, and actions, using its id or unique name.
  - body: { idOrg: string, boards?: string, fields?: string, actions?: string, members?: string, board_lists?: string, memberships?: string, board_fields?: string, paid_account?: string, action_fields?: string, actions_limit?: string, board_actions?: string, member_fields?: string, membersInvited?: string, actions_display?: string, member_activity?: string, actions_entities?: string, memberships_member?: string, board_action_fields?: string, board_actions_limit?: string, board_actions_since?: string, board_actions_format?: string, board_actions_display?: string, membersInvited_fields?: string, board_actions_entities?: string, memberships_member_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/organizations/by/id/org/by/field` — Retrieves the value of a single specified `field` for a trello organization `idorg`, ideal for efficiently fetching a specific piece of information without loading the full organization details.
  - body: { field: string, idOrg: string }
- `POST https://api.mcp.ai/api/trello/get/organizations/deltas/by/id/org` — Retrieves a log of recent modifications (deltas) for a trello organization, filterable by tags and supporting incremental fetching via an update index.
  - body: { tags: string, idOrg: string, ixLastUpdate: string }
- `POST https://api.mcp.ai/api/trello/get/organizations/members/by/id/org` — Retrieves members of a trello organization (specified by id or name), with an option to include member activity if the organization is premium.
  - body: { idOrg: string, fields?: string, filter?: string, activity?: string }
- `POST https://api.mcp.ai/api/trello/get/organizations/members/by/id/org/by/filter` — Fetches members of a specified trello organization using a filter like 'all', 'normal', 'admins', or 'owners'.
  - body: { idOrg: string, filter: string }
- `POST https://api.mcp.ai/api/trello/get/organizations/members/cards/by/id/org/by/id/member` — Fetches all cards assigned to a specific member of a given trello organization.
  - body: { list?: string, board?: string, idOrg: string, fields?: string, filter?: string, actions?: string, members?: string, idMember: string, checklists?: string, attachments?: string, list_fields?: string, board_fields?: string, member_fields?: string, checkItemStates?: string, attachment_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/organizations/members/invited/by/id/org` — Retrieves members invited to a trello organization who have not yet accepted their invitation, returning only data for pending invitations (not active or former members) and cannot send or modify invi
  - body: { idOrg: string, fields?: string }
- `POST https://api.mcp.ai/api/trello/get/organizations/members/invited/by/id/org/by/field` — Retrieves a specific `field` (e.g., fullname, username, email, status) for members with pending invitations to the trello organization specified by `idorg`.
  - body: { field: string, idOrg: string }
- `POST https://api.mcp.ai/api/trello/get/organizations/memberships/by/id/org` — Fetches organization-level memberships for a trello organization, with options to filter members and include their details; does not return board-specific memberships.
  - body: { idOrg: string, filter?: string, member?: string, member_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/organizations/memberships/by/id/org/by/id/membership` — Retrieves a specific membership within a trello organization, using their respective ids, to ascertain the member's role, status, or permissions.
  - body: { idOrg: string, member?: string, idMembership: string, member_fields?: string }
- `POST https://api.mcp.ai/api/trello/get/search` — Searches trello content (e.g., boards, cards, members) within specified organizations using a query and customizable result fields.
  - body: { query: string, idCards?: string, partial?: string, idBoards?: string, card_list?: string, card_board?: string, cards_page?: string, modelTypes?: string, card_fields?: string, cards_limit?: string, board_fields?: string, boards_limit?: string, card_members?: string, card_stickers?: string, member_fields?: string, members_limit?: string, idOrganizations: string, card_attachments?: string, organization_fields?: string, organizations_limit?: string }
- `POST https://api.mcp.ai/api/trello/get/search/members` — Searches trello members by name, username, or email, optionally scoped to a board or organization.
  - body: { limit?: string, query: string, idBoard?: string, idOrganization?: string, onlyOrgMembers?: string }
- `POST https://api.mcp.ai/api/trello/get/sessions/socket` — Establishes a websocket connection with trello for receiving real-time updates on trello entities.
- `POST https://api.mcp.ai/api/trello/get/tokens/by/token` — Retrieves information about a specific trello api token, allowing selection of specific fields and inclusion of webhook details.
  - body: { fields?: string, webhooks?: string }
- `POST https://api.mcp.ai/api/trello/get/tokens/by/token/by/field` — Retrieves a specific field from a trello token, provided the token is valid, has necessary permissions, and the field is a valid token field.
  - body: { field: string, token: string }
- `POST https://api.mcp.ai/api/trello/get/tokens/member/by/token` — Retrieves information about the trello member associated with the current api token, allowing customization of the returned fields.
  - body: { fields?: string }
- `POST https://api.mcp.ai/api/trello/get/tokens/member/by/token/by/field` — Retrieves a specific field for the trello member associated with the provided api token.
  - body: { field: string }
- `POST https://api.mcp.ai/api/trello/get/tokens/webhooks/by/token` — Retrieves all webhooks associated with a specific trello api token.
- `POST https://api.mcp.ai/api/trello/get/tokens/webhooks/by/token/by/id/webhook` — Retrieves detailed information for a specific trello webhook, identified by `idwebhook`, that is associated with the given `token`.
  - body: { idWebhook: string }
- `POST https://api.mcp.ai/api/trello/get/types/by/id` — Retrieves the structural details of a trello object type (e.g., 'action', 'board', 'card') using its identifier; describes the type itself, not specific instances.
  - body: { id: string }
- `POST https://api.mcp.ai/api/trello/get/webhooks/by/id/webhook` — Retrieves the full configuration and status for a specific trello webhook by its unique id; this action does not return past notification history.
  - body: { idWebhook: string }
- `POST https://api.mcp.ai/api/trello/get/webhooks/by/id/webhook/by/field` — Gets a specific field's value from a trello webhook, avoiding retrieval of the full webhook object.
  - body: { field: string, idWebhook: string }
- `POST https://api.mcp.ai/api/trello/list/create/list` — Deprecated: use 'add lists' instead. creates a new list on a trello board, optionally copying an existing list, setting position, and initial state; does not modify existing lists or move cards.
  - body: { pos?: string, name?: string, closed?: string, idBoard?: string, subscribed?: string, idListSource?: string }
- `POST https://api.mcp.ai/api/trello/list/get/by/id/list` — Retrieves a trello list by its unique id, optionally including details for its cards and parent board. <<DEPRECATED use get_lists_by_id_list>>
  - body: { board?: string, cards?: string, fields?: string, idList: string, card_fields?: string, board_fields?: string }
- `POST https://api.mcp.ai/api/trello/list/get/cards/by/id/list` — Deprecated: fetches cards from a trello list by its id; use `getlistscardsbyidlist` instead.
  - body: { limit?: string, since?: string, before?: string, fields?: string, filter?: string, idList: string, actions?: string, members?: string, stickers?: string, checklists?: string, attachments?: string, member_fields?: string, checkItemStates?: string, attachment_fields?: string }
- `POST https://api.mcp.ai/api/trello/list/id/board/get` — Deprecated: please use the `get lists board by id list` action instead. retrieves the board to which a specific trello list belongs.
  - body: { fields?: string, idList: string }
- `POST https://api.mcp.ai/api/trello/mark/card/notifications/read` — Marks all notifications associated with a specific trello card as read; this is irreversible and only affects read status, not deleting or modifying notifications.
  - body: { idCard: string }
- `POST https://api.mcp.ai/api/trello/member/get/boards` — Deprecated: retrieves a filtered list of boards for a trello member; use `get members boards by id member by filter` instead.
  - body: { filter?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/member/get/boards/by/id/member` — Deprecated: use `getmembersboardsbyidmember`; retrieves trello boards for a member (id/username).
  - body: { lists?: string, fields?: string, filter?: string, actions?: string, idMember: string, memberships?: string, organization?: string, action_fields?: string, actions_limit?: string, actions_since?: string, actions_format?: string, actions_entities?: string, organization_fields?: string }
- `POST https://api.mcp.ai/api/trello/member/get/by/id` — [deprecated: please use 'get members by id member' instead] fetches comprehensive trello member information by id/username, including profile, activities, boards, cards, notifications, and organizatio
  - body: { cards?: string, boards?: string, fields?: string, tokens?: string, actions?: string, idMember: string, boardStars?: string, board_lists?: string, card_fields?: string, customEmoji?: string, action_since?: string, board_fields?: string, card_members?: string, paid_account?: string, action_before?: string, action_fields?: string, actions_limit?: string, board_actions?: string, boardsInvited?: string, card_stickers?: string, notifications?: string, organizations?: string, savedSearches?: string, customStickers?: string, actions_display?: string, actions_entities?: string, boardBackgrounds?: string, card_attachments?: string, board_memberships?: string, board_organization?: string, card_member_fields?: string, notification_since?: string, board_action_fields?: string, board_actions_limit?: string, board_actions_since?: string, notification_before?: string, notification_fields?: string, notifications_limit?: string, organization_fields?: string, board_actions_format?: string, boardsInvited_fields?: string, organizationsInvited?: string, board_actions_display?: string, notifications_display?: string, board_actions_entities?: string, card_attachment_fields?: string, customBoardBackgrounds?: string, notifications_entities?: string, board_organization_fields?: string, organization_paid_account?: string, notification_memberCreator?: string, organizationsInvited_fields?: string, notification_memberCreator_fields?: string }
- `POST https://api.mcp.ai/api/trello/remove/checklist/item/from/card/by/ids` — Permanently deletes a specific checklist item from a checklist on a trello card using their respective ids.
  - body: { idCard: string, idCheckItem: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/remove/specific/member/s/board/backgrounds` — Permanently deletes a specific custom board background (identified by `idboardbackground`) associated with an existing trello member (identified by `idmember`).
  - body: { idMember: string, idBoardBackground: string }
- `POST https://api.mcp.ai/api/trello/search/get/results` — Deprecated: use the `get search` action to search trello content within specified organizations.
  - body: { query: string, idCards?: string, partial?: string, idBoards?: string, card_list?: string, card_board?: string, cards_page?: string, modelTypes?: string, card_fields?: string, cards_limit?: string, board_fields?: string, boards_limit?: string, card_members?: string, card_stickers?: string, member_fields?: string, members_limit?: string, idOrganizations: string, card_attachments?: string, organization_fields?: string, organizations_limit?: string }
- `POST https://api.mcp.ai/api/trello/token/get/member/by/token` — Retrieves information for the trello member associated with the api token, with customizable fields. <<deprecated: please use the 'get tokens member by token' action instead.>>
  - body: { fields?: string }
- `POST https://api.mcp.ai/api/trello/trello/update/member/board/star` — Updates an existing board star for a member, allowing changes to the target board (must be a valid, accessible board id if specified) or the star's position.
  - body: { pos?: string, idBoard?: string, idMember: string, idBoardStar: string }
- `POST https://api.mcp.ai/api/trello/update/actions/by/id/action` — Updates the `text` field of a specific trello comment action, identified by `idaction`.
  - body: { text?: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/update/actions/text/by/id/action` — Updates the text of an existing trello action (e.g., a comment or card update) identified by `idaction`; this change only affects the action's text content.
  - body: { value?: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/update/board/membership` — Updates a user's role (e.g., admin, normal, observer) on a specific trello board or retrieves updated member details, requiring existing board and membership ids.
  - body: { type?: string, idBoard: string, idMembership: string, member_fields?: string }
- `POST https://api.mcp.ai/api/trello/update/board/sidebar/actions/prefs` — Updates the current user's preference for the visibility of sidebar board actions on a specific trello board.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/board/star/position` — Updates the display position of a specific starred board for a trello member (referenced by `idmember` or 'me') using its `idboardstar`, allowing reordering to 'top', 'bottom', or a specific positive 
  - body: { value?: string, idMember: string, idBoardStar: string }
- `POST https://api.mcp.ai/api/trello/update/boards/by/id/board` — Updates attributes (e.g., name, description, status, preferences) of an existing trello board identified by `idboard`.
  - body: { desc?: string, name?: string, closed?: string, idBoard: string, powerUps?: string, subscribed?: string, prefs_voting?: string, idBoardSource?: string, prefs__voting?: string, idOrganization?: string, keepFromSource?: string, prefs_comments?: string, prefs_selfJoin?: string, labelNames__red?: string, prefs__comments?: string, prefs__selfJoin?: string, prefs_cardAging?: string, labelNames__blue?: string, prefs__cardAging?: string, prefs_background?: string, prefs_cardCovers?: string, labelNames__green?: string, prefs__background?: string, prefs__cardCovers?: string, prefs_invitations?: string, labelNames__orange?: string, labelNames__purple?: string, labelNames__yellow?: string, prefs__invitations?: string, prefs_permissionLevel?: string, prefs__permissionLevel?: string, prefs__calendarFeedEnabled?: string }
- `POST https://api.mcp.ai/api/trello/update/boards/closed/by/id/board` — Archives (closes) an active trello board or reopens a previously archived board.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/desc/by/id/board` — Updates the description of a specified trello board; the update is immediate and does not affect other board elements like lists, cards, or membership.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/id/organization/by/id/board` — Moves an existing trello board to a specified, existing trello organization, which can affect the board's visibility and member access.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/label/names/blue/by/id/board` — Sets the name of the blue label for a trello board.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/label/names/green/by/id/board` — Updates the name of the green label for a specified trello board; this change is board-wide, affects all cards using this label, and does not change the label's color.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/label/names/orange/by/id/board` — Updates the name of the orange label for a specified trello board, affecting only the label's name, not its color or associated cards.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/label/names/purple/by/id/board` — Updates the name of the purple label on a trello board specified by `idboard`.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/label/names/red/by/id/board` — Updates the name of the red label on a specified trello board, without affecting its color or other labels.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/label/names/yellow/by/id/board` — Updates the name of a board's yellow label; other colored labels are unaffected.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/members/by/id/board` — Adds or updates a member's role on a specific trello board, typically requiring the member's `email` and a membership `type`.
  - body: { type?: string, email?: string, idBoard: string, fullName?: string }
- `POST https://api.mcp.ai/api/trello/update/boards/members/by/id/board/by/id/member` — Updates a current member's email, full name, or role (admin, normal, or observer) on a specific trello board; email and full name changes are board-specific and do not affect the member's global trell
  - body: { type?: string, email?: string, idBoard: string, fullName?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/update/boards/my/prefs/email/position/by/id/board` — Updates a trello board's email position preference for new cards; this preference only affects new cards (not existing ones) and the board must exist.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/my/prefs/id/email/list/by/id/board` — Sets or disables the default trello list for new cards created via email on a specific board.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/my/prefs/show/list/guide/by/id/board` — Updates the 'show list guide' preference for a specified trello board, affecting visibility for all users of that board.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/my/prefs/show/sidebar/activity/by/id/board` — Sets the current user's preference for displaying or concealing the sidebar activity feed on an accessible trello board; this change only affects the requesting user.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/my/prefs/show/sidebar/by/id/board` — Updates the authenticated user's personal preference for showing or hiding the sidebar on a specific trello board.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/my/prefs/show/sidebar/members/by/id/board` — Updates the authenticated user's preference for showing or hiding members in a specific trello board's sidebar, affecting only the current user's view.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/name/by/id/board` — Updates the name of an existing trello board, identified by `idboard`; this change only affects the board's name, not its other attributes.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/prefs/background/by/id/board` — Updates the cosmetic background preference for a specific trello board; this change does not affect board functionality or content.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/prefs/calendar/feed/enabled/by/id/board` — Updates the 'calendarfeedenabled' preference for a trello board, which, when enabled, makes board cards with due dates accessible via an icalendar feed for external calendar integration.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/prefs/card/aging/by/id/board` — Updates the card aging visual preference to 'pirate' or 'regular' mode for a specified trello board.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/prefs/card/covers/by/id/board` — Updates the preference on a specific trello board for whether existing card covers are displayed; this controls visibility only and does not add or remove the actual covers from cards.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/prefs/comments/by/id/board` — Changes the permission settings for who can add comments to cards on a specific trello board, without affecting other board settings.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/prefs/invitations/by/id/board` — Updates who can invite new members ('admins' or 'members') to a specific trello board.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/prefs/permission/level/by/id/board` — Updates the permission level preference (e.g., 'private' or 'public') for a trello board, identified by `idboard`, if the board exists and the authenticated user possesses administrative permissions f
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/prefs/self/join/by/id/board` — Updates a board's 'selfjoin' preference, determining if members can join freely or must be invited.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/prefs/voting/by/id/board` — Sets who can vote on cards for an existing trello board, changing only the voting preferences for all cards on the board.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/boards/subscribed/by/id/board` — Updates the authenticated user's subscription status (subscribe/unsubscribe for notifications) for a specified trello board, to which the user must have access.
  - body: { value?: string, idBoard: string }
- `POST https://api.mcp.ai/api/trello/update/card/checklist/item/position` — Updates the position of a check item within a checklist on a trello card; the new position can be 'top', 'bottom', or a positive integer.
  - body: { value?: string, idCard: string, idCheckItem: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/update/card/checklist/item/state/by/ids` — Updates the state of a specific check item on a trello card's checklist, only affecting its completion status and no other properties.
  - body: { value?: string, idCard: string, idCheckItem: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/update/card/comment` — Updates the text for a given comment action (`idaction`) on a specified card (`idcard`), affecting only the text content.
  - body: { text?: string, idCard: string, idAction: string }
- `POST https://api.mcp.ai/api/trello/update/cards/by/id/card` — Updates an existing trello card's attributes like name, description, due date, members, labels, position, or archives/unarchives it, attaches files, or changes its cover.
  - body: { due?: string, pos?: string, desc?: string, name?: string, closed?: string, idCard: string, idList?: string, labels?: string, idBoard?: string, idLabels?: string, idMembers?: string, urlSource?: string, fileSource?: string, subscribed?: string, idCardSource?: string, keepFromSource?: string, idAttachmentCover?: string }
- `POST https://api.mcp.ai/api/trello/update/cards/closed/by/id/card` — Updates the 'closed' status of an existing trello card.
  - body: { value?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/update/cards/desc/by/id/card` — Updates or clears the entire description of an existing trello card; use an empty string for `value` to clear.
  - body: { value?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/update/cards/due/by/id/card` — Updates the due date of a specific trello card; the card identified by `idcard` must exist.
  - body: { value?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/update/cards/id/attachment/cover/by/id/card` — Sets or removes the attachment cover for an existing trello card, using a specified image attachment id from that card or `none` to remove the cover.
  - body: { value?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/update/cards/id/board/by/id/card` — Moves a trello card to a different board and, optionally, to a specific list on that new board, useful for reorganizing across projects or workflows.
  - body: { value?: string, idCard: string, idList?: string }
- `POST https://api.mcp.ai/api/trello/update/cards/id/list/by/id/card` — Moves a trello card to a different list on the same trello board; this operation is idempotent and only updates the card's list id.
  - body: { value?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/update/cards/id/members/by/id/card` — Adds a member to a trello card, appending their id to the card's list of member ids; the card must exist and the member must have board permissions.
  - body: { value?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/update/cards/labels/by/id/card` — Updates labels on an existing trello card; use `value` with a color list (e.g., 'red,blue') or 'all' to replace all labels, or `color` and `name` to add/update a specific label (created if new on boar
  - body: { name?: string, color?: string, value?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/update/cards/name/by/id/card` — Updates the name of an existing trello card, identified by its id or shortlink; other card properties remain unchanged.
  - body: { value?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/update/cards/pos/by/id/card` — Updates a trello card's position within its list to 'top', 'bottom', or a specified 1-indexed positive integer.
  - body: { value?: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/update/cards/stickers/by/id/card/by/id/sticker` — Updates an existing sticker's image, position (top, left coordinates), or stacking order (zindex) on a specific trello card; the `rotate` parameter may not be supported by trello.
  - body: { top?: string, left?: string, image?: string, idCard: string, rotate?: string, zIndex?: string, idSticker: string }
- `POST https://api.mcp.ai/api/trello/update/cards/subscribed/by/id/card` — Updates the user's subscription status for a trello card, if the card exists and is accessible.
  - body: { value: string, idCard: string }
- `POST https://api.mcp.ai/api/trello/update/checklist/item/by/ids` — Updates a check item's attributes (name, position, state) or moves it to a different checklist on the same card, requiring the card id, current checklist id, and check item id.
  - body: { pos?: string, name?: string, state?: string, idCard: string, idCheckItem: string, idChecklist?: string, idChecklistCurrent: string }
- `POST https://api.mcp.ai/api/trello/update/checklist/item/name/in/card` — Updates the name of a specific check item on a checklist within a trello card, provided the card, checklist, and check item all exist.
  - body: { value?: string, idCard: string, idCheckItem: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/update/checklists/by/id/checklist` — Updates an existing trello checklist, allowing modification of its name, position, associated card/board, or copying items from a source checklist.
  - body: { pos?: string, name?: string, idCard?: string, idBoard?: string, idChecklist: string, idChecklistSource?: string }
- `POST https://api.mcp.ai/api/trello/update/checklists/id/card/by/id/checklist` — Moves a trello checklist to a new parent card; the checklist and the destination card must exist.
  - body: { value?: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/update/checklists/name/by/id/checklist` — Updates the name of an existing trello checklist.
  - body: { value?: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/update/checklists/pos/by/id/checklist` — Updates the position of an existing checklist on a trello card.
  - body: { value?: string, idChecklist: string }
- `POST https://api.mcp.ai/api/trello/update/labels/by/id/label` — Updates an existing trello label's attributes (color, name, or associated board) by its id; the label must exist.
  - body: { name?: string, color?: string, idBoard?: string, idLabel: string }
- `POST https://api.mcp.ai/api/trello/update/labels/color/by/id/label` — Updates the color of an existing trello label, or removes its color if 'null' is specified for the value.
  - body: { value?: string, idLabel: string }
- `POST https://api.mcp.ai/api/trello/update/labels/name/by/id/label` — Updates the name of an existing trello label, identified by `idlabel`; an empty string for `value` clears the label's name but does not delete the label.
  - body: { value?: string, idLabel: string }
- `POST https://api.mcp.ai/api/trello/update/lists/by/id/list` — Updates attributes of an existing trello list, such as name, position, archive status, board, or copies cards from another list, provided the list `idlist` exists.
  - body: { pos?: string, name?: string, closed?: string, idList: string, idBoard?: string, subscribed?: string, idListSource?: string }
- `POST https://api.mcp.ai/api/trello/update/lists/closed/by/id/list` — Updates whether an existing trello list is closed (archived); a closed list is hidden from the board view but not deleted and can be re-opened.
  - body: { value?: string, idList: string }
- `POST https://api.mcp.ai/api/trello/update/lists/id/board/by/id/list` — Moves an existing trello list (identified by `idlist`) to an existing destination board (board id in `value`), optionally setting its new position (`pos`).
  - body: { pos?: string, value?: string, idList: string }
- `POST https://api.mcp.ai/api/trello/update/lists/name/by/id/list` — Updates the name of an existing trello list, identified by its id; this only changes the list's name, not its cards or position.
  - body: { value?: string, idList: string }
- `POST https://api.mcp.ai/api/trello/update/lists/pos/by/id/list` — Changes a trello list's order on a board to 'top', 'bottom', or a specified numeric position, affecting only its position.
  - body: { value?: string, idList: string }
- `POST https://api.mcp.ai/api/trello/update/lists/subscribed/by/id/list` — Updates the subscription status for a trello list, allowing the user to subscribe or unsubscribe to control notifications.
  - body: { value?: string, idList: string }
- `POST https://api.mcp.ai/api/trello/update/member/board/background` — Updates an existing board background's properties (brightness, image file, or tiling) for a specified trello member, using their id and the board background id.
  - body: { file?: string, tile?: string, idMember: string, brightness?: string, idBoardBackground: string }
- `POST https://api.mcp.ai/api/trello/update/member/s/custom/board/backgrounds` — Updates a specific existing custom board background for a trello member.
  - body: { file?: string, tile?: string, idMember: string, brightness?: string, idBoardBackground: string }
- `POST https://api.mcp.ai/api/trello/update/member/saved/search` — Updates an existing trello member's saved search (name, position, or query) identified by `idmember` and `idsavedsearch`.
  - body: { pos?: string, name?: string, query?: string, idMember: string, idSavedSearch: string }
- `POST https://api.mcp.ai/api/trello/update/member/saved/search/name` — Updates a trello member's saved search display name (not its criteria), identified by `idmember` and `idsavedsearch`; the search must exist and belong to the member.
  - body: { value?: string, idMember: string, idSavedSearch: string }
- `POST https://api.mcp.ai/api/trello/update/member/saved/search/pos` — Updates the position of a specified saved search for a trello member; other attributes of the saved search or member remain unchanged.
  - body: { value?: string, idMember: string, idSavedSearch: string }
- `POST https://api.mcp.ai/api/trello/update/member/saved/search/query` — Updates the query string of an existing saved search for a trello member.
  - body: { value?: string, idMember: string, idSavedSearch: string }
- `POST https://api.mcp.ai/api/trello/update/member/summary/interval` — Updates a trello member's preference for the frequency of email summary notifications; this setting affects only summary notifications.
  - body: { value?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/update/members/avatar/source/by/id/member` — Updates the avatar source for a specified trello member.
  - body: { value: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/update/members/bio/by/id/member` — Updates the bio of a specified trello member.
  - body: { value?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/update/members/by/id/member` — Updates an existing trello member's profile information, preferences, or username.
  - body: { bio?: string, fullName?: string, idMember: string, initials?: string, username?: string, avatarSource?: string, prefs__locale?: string, prefs__colorBlind?: string, prefs__minutesBetweenSummaries?: string }
- `POST https://api.mcp.ai/api/trello/update/members/full/name/by/id/member` — Updates the full name for a trello member, identified by their valid id or username; this operation only affects the full name, leaving other profile information unchanged.
  - body: { value?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/update/members/initials/by/id/member` — Updates the initials for a specified trello member, identified by their id or username.
  - body: { value?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/update/members/prefs/color/blind/by/id/member` — Updates a trello member's color blind preference, which only changes their specific display without affecting others.
  - body: { value?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/update/members/prefs/locale/by/id/member` — Updates a trello member's locale preference; affects date/time display (not existing content translation) and an empty `value` may reset to default.
  - body: { value?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/update/members/username/by/id/member` — Updates the username for an existing trello member, identified by their id or current username.
  - body: { value?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/update/notifications/by/id/notification` — Updates only the 'unread' status of a specific trello notification.
  - body: { unread?: string, idNotification: string }
- `POST https://api.mcp.ai/api/trello/update/notifications/unread/by/id/notification` — Marks an existing and accessible trello notification as read or unread.
  - body: { value?: string, idNotification: string }
- `POST https://api.mcp.ai/api/trello/update/org/associated/domain/prefs` — Updates or removes the google workspace domain associated with a trello organization, often to configure features like sso or automatic user provisioning.
  - body: { idOrg: string, value?: string }
- `POST https://api.mcp.ai/api/trello/update/org/board/visibility` — Updates the preference controlling who can set board visibility to 'organization-visible' within an existing trello organization.
  - body: { idOrg: string, value?: string }
- `POST https://api.mcp.ai/api/trello/update/org/external/members/access` — Updates the 'externalmembersdisabled' preference for a trello organization to control whether non-members can be added to its boards.
  - body: { idOrg: string, value?: string }
- `POST https://api.mcp.ai/api/trello/update/org/member/deactivation` — Updates a member's deactivation status in an organization; 'true' deactivates (suspends access temporarily), 'false' reactivates.
  - body: { idOrg: string, value?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/update/org/membership` — Updates a trello organization member's type to 'admin', 'normal', or 'observer', using the organization and membership ids.
  - body: { type?: string, idOrg: string, idMembership: string, member_fields?: string }
- `POST https://api.mcp.ai/api/trello/update/org/private/board/visibility` — Updates the organization's preference controlling who is permitted to change the visibility of its private boards; requires admin privileges for the organization.
  - body: { idOrg: string, value?: string }
- `POST https://api.mcp.ai/api/trello/update/org/public/board/visibility` — Updates the restriction on who can set board visibility to public for a specified trello organization.
  - body: { idOrg: string, value?: string }
- `POST https://api.mcp.ai/api/trello/update/organizations/by/id/org` — Updates various attributes of an existing trello organization, identified by `idorg`.
  - body: { desc?: string, name?: string, idOrg: string, website?: string, displayName?: string, prefs__permissionLevel?: string, prefs__associatedDomain?: string, prefs__googleAppsVersion?: string, prefs__orgInviteRestrict?: string, prefs__externalMembersDisabled?: string, prefs__boardVisibilityRestrict__org?: string, prefs__boardVisibilityRestrict__public?: string, prefs__boardVisibilityRestrict__private?: string }
- `POST https://api.mcp.ai/api/trello/update/organizations/desc/by/id/org` — Updates or clears the description for an existing trello organization, identified by its id or name, to a new string up to 16384 characters.
  - body: { idOrg: string, value?: string }
- `POST https://api.mcp.ai/api/trello/update/organizations/display/name/by/id/org` — Updates the display name of a trello organization, identifiable by its current id or name (`idorg`), to the new `value`; other attributes remain unaffected.
  - body: { idOrg: string, value?: string }
- `POST https://api.mcp.ai/api/trello/update/organizations/members/by/id/org` — Adds/updates a member in a specified trello organization (`idorg`); `email` and `type` are api-required, `fullname` is needed if `email` is new to trello.
  - body: { type?: string, email?: string, idOrg: string, fullName?: string }
- `POST https://api.mcp.ai/api/trello/update/organizations/members/by/id/org/by/id/member` — Updates a member's details (email, full name, or type) in a trello organization, applying changes only to the fields provided.
  - body: { type?: string, email?: string, idOrg: string, fullName?: string, idMember: string }
- `POST https://api.mcp.ai/api/trello/update/organizations/name/by/id/org` — Updates the unique programmatic identifier (used in urls and api interactions) for an existing trello organization; this is an irreversible operation, effective immediately, and only affects this iden
  - body: { idOrg: string, value?: string }
- `POST https://api.mcp.ai/api/trello/update/organizations/prefs/google/apps/version/by/id/org` — Updates the google apps integration version preference for a specified trello organization, to manage compatibility or features related to google workspace services.
  - body: { idOrg: string, value?: string }
- `POST https://api.mcp.ai/api/trello/update/organizations/prefs/org/invite/restrict/by/id/org` — Modifies a trello organization's invitation policy using an email, domain, or keyword rule, affecting only future invites, not existing members.
  - body: { idOrg: string, value?: string }
- `POST https://api.mcp.ai/api/trello/update/organizations/prefs/permission/level/by/id/org` — Updates a trello organization's `permissionlevel` preference, determining if it's members-only or link-accessible, and affecting new board default visibility.
  - body: { idOrg: string, value?: string }
- `POST https://api.mcp.ai/api/trello/update/organizations/website/by/id/org` — Updates the website url for a specified trello organization.
  - body: { idOrg: string, value?: string }
- `POST https://api.mcp.ai/api/trello/update/sessions/by/id/session` — Updates a trello user session's viewed board id or status; call when user activity or board focus changes.
  - body: { status?: string, idBoard?: string, idSession: string }
- `POST https://api.mcp.ai/api/trello/update/sessions/status/by/id/session` — Updates the status of an existing trello session.
  - body: { value?: string, idSession: string }
- `POST https://api.mcp.ai/api/trello/update/tokens/webhooks/by/token` — Updates an existing webhook's description, callback url, or monitored trello model id, using the api token in the path to identify the webhook; any new `idmodel` must be accessible by the token.
  - body: { idModel?: string, callbackURL?: string, description?: string }
- `POST https://api.mcp.ai/api/trello/update/webhooks` — Updates an existing trello webhook's description, active status, callback url, or monitored model id; requires the webhook id (not in request body) to be specified, typically via url path.
  - body: { active?: string, idModel?: string, callbackURL?: string, description?: string }
- `POST https://api.mcp.ai/api/trello/update/webhooks/active/by/id/webhook` — Updates the active status ('true' or 'false') of an existing trello webhook specified by `idwebhook`, without affecting other properties.
  - body: { value?: string, idWebhook: string }
- `POST https://api.mcp.ai/api/trello/update/webhooks/by/id/webhook` — Updates an existing trello webhook's configuration, avoiding the need to delete and recreate it for modifications.
  - body: { active?: string, idModel?: string, idWebhook: string, callbackURL?: string, description?: string }
- `POST https://api.mcp.ai/api/trello/update/webhooks/callback/urlby/id/webhook` — Updates the callback url for a specific trello webhook; other webhook attributes remain unchanged.
  - body: { value: string, idWebhook: string }
- `POST https://api.mcp.ai/api/trello/update/webhooks/description/by/id/webhook` — Updates the description of an existing trello webhook; an empty string for the new description removes the current one.
  - body: { value?: string, idWebhook: string }
- `POST https://api.mcp.ai/api/trello/update/webhooks/id/model/by/id/webhook` — Updates the `idmodel` (the monitored trello entity like a board, list, or card) for an active webhook `idwebhook` to the new model id `value`; other webhook properties are unaffected.
  - body: { value?: string, idWebhook: string }

## Example prompts
- "List my boards and the cards assigned to me"
- "Create a 'Follow-up client X' card on the To Do list of board Sales"
- "Move today's Done cards to the Archive board"

## More
- Page: https://mcp.ai/trello
- Agent spec (llms.txt): https://mcp.ai/trello/llms.txt
- Postman collection: https://mcp.ai/trello/postman.json
