Trello MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DEBUG | No | Enable debug mode for detailed operation logs | false |
| NANGO_BASE_URL | No | The base URL for Nango API | https://api.nango.dev |
| NANGO_SECRET_KEY | Yes | Your Nango secret key from the dashboard | |
| TRELLO_CLIENT_ID | Yes | Your Trello API key from the Trello Developer Portal | |
| NANGO_CONNECTION_ID | Yes | Your user connection ID from Nango | |
| NANGO_INTEGRATION_ID | No | The Nango integration ID for Trello | trello |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| trello_get_my_boardsA | Get all boards for the authenticated user |
| trello_get_boardB | Get details of a specific board |
| trello_create_boardC | Create a new board |
| trello_update_boardD | Update a board |
| trello_delete_boardC | Delete a board |
| trello_get_board_listsC | Get all lists on a board |
| trello_get_board_cardsB | Get all cards on a board |
| trello_get_board_membersC | Get all members of a board |
| trello_create_listC | Create a new list on a board |
| trello_update_listD | Update a list |
| trello_archive_listC | Archive a list |
| trello_get_list_cardsB | Get all cards in a list |
| trello_create_cardC | Create a new card |
| trello_get_cardC | Get details of a specific card |
| trello_update_cardC | Update a card |
| trello_delete_cardC | Delete a card |
| trello_add_comment_to_cardB | Add a comment to a card |
| trello_add_attachment_to_cardC | Add an attachment to a card |
| trello_searchB | Search Trello for boards, cards, etc. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 19 tools
Each tool has a distinct action-target combination, e.g., add_attachment vs add_comment, and get_board vs get_card. No two tools appear to do the same thing.
All tools follow a consistent verb_noun pattern with lowercase underscores. The prefix 'trello_' is used uniformly, and verbs like create/get/update/delete/archive/add are applied appropriately.
19 tools cover the core Trello entities (boards, lists, cards) with CRUD operations plus attachments, comments, archiving, search, and members. This is a well-scoped set for a project management tool.
Basic CRUD for boards, lists, and cards is present, along with attachment and comment support. However, notable gaps include no tool to move cards between lists, no delete list (only archive), and no management of labels or due dates.