Skip to main content
Glama
m0xai

Trello MCP Server with Python

by m0xai

create_board_label

Add a custom label to a Trello board by specifying its name and color for better organization and visual categorization of tasks.

Instructions

Create label for a specific board.

Args: board_id (str): The ID of the board whose to add label to. name (str): The name of the label. color (str): The color of the label. Returns: TrelloLabel: A label object for the board.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
board_idYes
payloadYes

Implementation Reference

  • The MCP tool handler for 'create_board_label' that processes the input payload, calls the BoardService, handles errors, and returns the created TrelloLabel.
    async def create_board_label(ctx: Context, board_id: str, payload: CreateLabelPayload) -> TrelloLabel: """Create label for a specific board. Args: board_id (str): The ID of the board whose to add label to. name (str): The name of the label. color (str): The color of the label. Returns: TrelloLabel: A label object for the board. """ try: logger.info(f"Creating label {payload.name} label for board: {board_id}") result = await service.create_board_label(board_id, **payload.model_dump(exclude_unset=True)) logger.info(f"Successfully created label {payload.name} labels for board: {board_id}") return result except Exception as e: error_msg = f"Failed to get board labels: {str(e)}" logger.error(error_msg) await ctx.error(error_msg) raise
  • Pydantic model defining the input schema for the create_board_label tool, with required 'name' and optional 'color' fields.
    from pydantic import BaseModel class CreateLabelPayload(BaseModel): """ Payload for creating a label. Attributes: name (str): The name of the label. color (str): The color of the label. """ name: str color: str | None = None
  • Tool registration line where create_board_label is added to the MCP server.
    mcp.add_tool(board.create_board_label)
  • Helper method in BoardService that makes the Trello API POST request to create the label and parses the response into TrelloLabel.
    async def create_board_label(self, board_id: str, **kwargs) -> TrelloLabel: """Create label for a specific board. Args: board_id (str): The ID of the board whose to add label. Returns: List[TrelloLabel]: A list of label objects for the board. """ response = await self.client.POST(f"/boards/{board_id}/labels", data=kwargs) return TrelloLabel(**response)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/m0xai/trello-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server