-
Notifications
You must be signed in to change notification settings - Fork 66
Open
Description
Hello,
Thanks you so much for your MCP, it's very usefull !
I have a request : do you think it will be possible to implement the "create checklist" function please ?
The official REST API doc of Trello expose this endpoint :
https://developer.atlassian.com/cloud/trello/rest/api-group-checklists/#api-checklists-post
I made something like that in the trello-client.ts but not sure how to test it :)
async createChecklist(name:string, cardId?: string): Promise<boolean> {
if (!cardId) {
throw new McpError(ErrorCode.InvalidParams, 'No card ID provided and no active card set');
}
const response = await this.axiosInstance.post<TrelloChecklist[]>(`/cards/${cardId}/checklists`, {name});
return response.data[0] !== undefined;
}
Thanks,
Best regards
Metadata
Metadata
Assignees
Labels
No labels