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
| Name | Required | Description | Default |
|---|---|---|---|
| checklist_id | Yes |
Implementation Reference
- server/tools/checklist.py:73-83 (handler)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)
- server/tools/tools.py:35-35 (registration)Registration of the delete_checklist tool in the MCP server.mcp.add_tool(checklist.delete_checklist)
- server/services/checklist.py:81-91 (helper)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}")