get_checklist
Retrieve a specific Trello checklist by its ID to access task items and completion status for project management.
Instructions
Get a specific checklist by ID.
Args:
checklist_id (str): The ID of the checklist to retrieve
Returns:
Dict: The checklist data
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| checklist_id | Yes |
Implementation Reference
- server/tools/checklist.py:15-25 (handler)The MCP tool handler for 'get_checklist', a thin wrapper delegating to ChecklistService.
async def get_checklist(checklist_id: str) -> Dict: """ Get a specific checklist by ID. Args: checklist_id (str): The ID of the checklist to retrieve Returns: Dict: The checklist data """ return await service.get_checklist(checklist_id) - server/tools/tools.py:31-31 (registration)Registration of the 'get_checklist' tool in the MCP server.
mcp.add_tool(checklist.get_checklist)