fastmcp-trello
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TRELLO_TOKEN | Yes | Your Trello authentication token | |
| TRELLO_API_KEY | Yes | Your Trello API key |
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": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_attachmentsB | Get all attachments on a card. |
| add_attachmentA | Add a URL attachment to a card. Only URLs are supported (no file uploads). |
| delete_attachmentB | Delete an attachment from a card. |
| get_boardsA | List all boards accessible to you. |
| get_boardB | Get a board's details including its lists. |
| get_listsA | Get all open lists on a board. |
| create_boardA | Create a new board. Set default_lists=false for a blank board. |
| update_boardB | Update a board's name or description. |
| close_boardA | Close (archive) a board. This does not permanently delete it. |
| get_cardsB | Get all cards in a list. |
| get_cardA | Get full details for a card including comments. |
| create_cardA | Create a new card on a list. Set position to "top", "bottom", or a positive float to control placement. |
| update_cardA | Update a card's fields. Set list_id to move the card to a different list. Set position to "top", "bottom", or a positive float to reorder within the list. |
| archive_cardB | Archive (close) a card. |
| get_labelsB | Get all labels defined on a board. |
| create_labelB | Create a new label on a board. |
| delete_labelC | Delete a label from a board. |
| add_label_to_cardC | Add a label to a card. |
| remove_label_from_cardB | Remove a label from a card. |
| create_listB | Create a new list on a board. Position can be 'top', 'bottom', or a number. |
| update_listC | Rename a list. |
| archive_listB | Archive (close) a list. |
| move_listA | Move a list to a new position. Use 'top', 'bottom', or a number. |
| add_commentB | Add a comment to a card. |
| search_cardsA | Search for cards across boards. Optionally scope to a specific board. |
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 25 tools
Every tool targets a specific resource and action (e.g., get_boards vs get_board vs get_cards), making them easy to distinguish. Even similar operations like archive_card and close_board are clearly separated by resource type.
All tools follow a consistent verb_noun pattern with lowercase snake_case (e.g., create_board, update_card, add_attachment). No mixed conventions or vague verbs.
With 25 tools, the set feels heavy, though the breadth of Trello resources (boards, lists, cards, labels, attachments, comments) provides some justification. It sits at the top of the borderline range.
The set provides solid CRUD coverage for boards, lists, cards, labels, and attachments, plus comments and search. Minor gaps include label updates, member assignment, and permanent deletion (only archiving is available), but these are not critical.