get_board_details
Retrieve Trello board metadata and lists. For full card details, use get_card or list cards tools; enable details only for small boards.
Instructions
Get information about a Trello board. IMPORTANT: Start with includeDetails=false (default) to get board metadata and lists only. Then use get_card or trello_get_list_cards to drill into specific cards. Only set includeDetails=true for small boards when you need a full overview.
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") | |
| includeDetails | No | Include all cards in the response. Default: false. WARNING: produces very large responses on busy boards. Prefer fetching board without details first, then use trello_get_list_cards or get_card for specific data. | |
| descriptionMaxLength | No | Maximum length for card descriptions when includeDetails=true (0 to exclude). Default: 200 | |
| compact | No | When includeDetails=true, return minimal card fields only (id, name, url, listId). Default: true. |