Skip to main content
Glama
m0xai

Trello MCP Server with Python

by m0xai

delete_checklist

Remove a checklist from Trello to declutter boards and manage tasks efficiently. Specify the checklist ID to execute the deletion.

Instructions

Delete a checklist. Args: checklist_id (str): The ID of the checklist to delete Returns: Dict: The response from the delete operation

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
checklist_idYes

Implementation Reference

  • MCP tool handler for deleting a checklist by ID, delegates to ChecklistService.
    async def delete_checklist(checklist_id: str) -> Dict: """ Delete a checklist. Args: checklist_id (str): The ID of the checklist to delete Returns: Dict: The response from the delete operation """ return await service.delete_checklist(checklist_id)
  • Registration of the delete_checklist tool in the MCP server.
    mcp.add_tool(checklist.delete_checklist)
  • ChecklistService method that performs the actual Trello API DELETE call for the checklist.
    async def delete_checklist(self, checklist_id: str) -> Dict: """ Delete a checklist. Args: checklist_id (str): The ID of the checklist to delete Returns: Dict: The response from the delete operation """ return await self.client.DELETE(f"/checklists/{checklist_id}")

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