productivity
Trello MCP, CLI, and Lua Integration for AI Agents
Trello integration docs for AI agents: MCP gateway setup, Trello CLI commands, Lua API reference, credentials, and function schemas.Trello for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
trello.trello_list_boards | Read read | 3 | List all boards for the authenticated Trello member. Supports filtering by status and field selection. |
trello.trello_get_board | Read read | 1 | Get detailed information about a Trello board by ID. |
trello.trello_list_lists | Read read | 1 | List all lists on a Trello board. |
trello.trello_get_list | Read read | 1 | Get detailed information about a Trello list by ID. |
trello.trello_list_cards | Read read | 3 | List all cards in a Trello list. Supports limit and before cursor for pagination. |
trello.trello_create_card | Write write | 7 | Create a new card on a Trello list. |
trello.trello_get_current_user | Read read | 0 | Get the profile of the currently authenticated Trello user. Useful for verifying credentials and displaying account information. |