openclaw-trello
v1.1.1
Published
Native Trello tools for OpenClaw — list boards, create/move/assign cards, add comments, manage checklists.
Readme
openclaw-trello
Native Trello tools for OpenClaw. Adds 13 first-class agent tools to interact with Trello — no curl, no shell scripts.
Install
openclaw plugins install openclaw-trello
openclaw gateway restartConfiguration
Add your Trello credentials to ~/.openclaw/openclaw.json:
{
"plugins": {
"entries": {
"openclaw-trello": {
"enabled": true,
"config": {
"apiKey": "your-trello-api-key",
"token": "your-trello-token"
}
}
}
}
}Get your credentials at https://trello.com/app-key.
Alternative: environment variables
As a fallback, the plugin also reads credentials from environment variables:
export TRELLO_API_KEY="your-trello-api-key"
export TRELLO_TOKEN="your-trello-token"The config block in openclaw.json takes precedence over environment variables.
Security note
The Trello API requires credentials as URL query parameters. Generate a token with the minimum permissions needed (read + write) and avoid using admin-level tokens.
Tools
| Tool | Description |
|------|-------------|
| trello_list_boards | List all accessible boards |
| trello_list_lists | List all open columns in a board |
| trello_list_cards | List all open cards in a column |
| trello_create_card | Create a new card |
| trello_move_card | Move a card to another column |
| trello_add_comment | Add a comment to a card |
| trello_update_card | Update a card (rename, archive, change description) |
| trello_checklist_create | Create a checklist on a card |
| trello_checklist_item_add | Add an item to a checklist |
| trello_checklist_item_complete | Mark a checklist item as complete |
| trello_get_member | Resolve a username or member ID to a member object |
| trello_card_add_member | Assign a member to a card |
| trello_card_remove_member | Remove a member from a card |
License
MIT
