Trello MCP Server with Python
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TRELLO_TOKEN | Yes | Your Trello Token obtained from Trello Apps Administration | |
| TRELLO_API_KEY | Yes | Your Trello API key obtained from Trello Apps Administration |
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
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_boardA | Retrieves a specific board by its ID. |
| get_boardsA | Retrieves all boards for the authenticated user. |
| get_board_labelsA | Retrieves all labels for a specific board. |
| create_board_labelC | Create label for a specific board. |
| get_listB | Retrieves a specific list by its ID. |
| get_listsA | Retrieves all lists on a given board. |
| create_listB | Creates a new list on a given board. |
| update_listB | Updates the name of a list. |
| delete_listB | Archives a list. |
| get_cardA | Retrieves a specific card by its ID. |
| get_cardsB | Retrieves all cards in a given list. |
| create_cardC | Creates a new card in a given list. |
| update_cardC | Updates a card's attributes. |
| delete_cardC | Deletes a card. |
| get_checklistB | |
| get_card_checklistsA | |
| create_checklistB | |
| update_checklistC | |
| delete_checklistB | |
| add_checkitemC | |
| update_checkitemB | |
| delete_checkitemB | |
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 22 tools
Each tool has a distinct purpose targeting specific Trello resources and actions, with clear boundaries (e.g., add_checkitem vs. update_checkitem, create_card vs. get_card). No tools appear to overlap or cause confusion in selection.
All tools follow a consistent verb_noun naming pattern (e.g., create_board_label, get_card_checklists, update_list). The naming is uniform and predictable across all 22 tools, enhancing readability and usability.
With 22 tools, the count is slightly high but reasonable for a comprehensive Trello integration covering boards, lists, cards, checklists, and labels. It includes CRUD operations for each resource, though it may feel heavy compared to simpler servers.
The tool set provides complete CRUD/lifecycle coverage for Trello's core domain, including boards, lists, cards, checklists, and labels. There are no obvious gaps, and agents can perform all essential operations without dead ends.