trello_action
Manage Trello boards, lists, and cards programmatically. Retrieve, create, update, search, and organize cards using the Trello API.
Instructions
Interact with the Trello REST API: list boards and lists, get and search cards, create cards, and update card properties.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action: get_boards, get_lists, get_cards, create_card, update_card, search_cards. | |
| api_key | Yes | Trello API key. | |
| token | Yes | Trello user token. | |
| board_id | No | Board ID. | |
| list_id | No | List ID. | |
| card_id | No | Card ID (for update_card). | |
| name | No | Card name (for create_card and update_card). | |
| desc | No | Card description. | |
| due | No | Due date as ISO 8601 string. | |
| due_complete | No | Whether the due date is marked complete. | |
| closed | No | Archive or unarchive the card. | |
| id_list | No | Move card to this list ID. | |
| pos | No | Card position: top, bottom, or a positive float. | |
| query | No | Search query (for search_cards). | |
| member_id | No | Member ID for get_boards (default: me). | |
| filter | No | Filter for boards or lists: open, closed, all. | |
| limit | No | Max results for search_cards. |