trello_get_board_cards
Retrieve cards from a Trello board with filters for status, attachments, members, and description length.
Instructions
Get all cards from a Trello board with optional filtering and detailed information like attachments and members.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| apiKey | No | Trello API key (optional if TRELLO_API_KEY env var is set) | |
| token | No | Trello API token (optional if TRELLO_TOKEN env var is set) | |
| boardId | Yes | ID or URL of the board (e.g. "abc123" or "https://trello.com/b/abc123/board-name") | |
| attachments | No | Include attachment information: "cover" for cover images, "true" for all attachments | false |
| members | No | Include member information for each card | true |
| filter | No | Filter cards by status | open |
| limit | No | Maximum number of cards to return. Default: 50 | |
| descriptionMaxLength | No | Maximum length for descriptions (0 to exclude descriptions). Default: 200 | |
| compact | No | Return minimal fields only (id, name, url, listId). Default: true. Set to false for full details. |