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.
7 functions 6 read 1 write Bearer token auth
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.
Machine-Readable Metadata
- integration_slug
trello- route_slug
trello- package
trello- auth_strategy
bearer_tokenBearer token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Trello CLIHeadless setup and direct function calls. Trello MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Trello MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Trello.
Claude Code Trello MCP setup for Claude Code. Cursor Trello MCP setup for Cursor. Codex Trello MCP setup for Codex. OpenAI Agents Trello MCP setup for OpenAI Agents SDK. Claude Agent SDK Trello MCP setup for Claude Agent SDK. Vercel AI SDK Trello MCP setup for Vercel AI SDK. LangChain Trello MCP setup for LangChain. LangGraph Trello MCP setup for LangGraph. CrewAI Trello MCP setup for CrewAI. MCP clients Trello MCP setup for Generic MCP Clients.
Trello CLI Matrix
Use these pages for direct Trello CLI workflows in scripts, CI, cron, and agent wrappers.
CI Trello CLI for CI. Cron Jobs Trello CLI for cron jobs. Shell Scripts Trello CLI for shell scripts. Headless Automation Trello CLI for headless automation. Coding Agents Trello CLI for coding agents.
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. |