修复 MCP 清单项更新并完善中文部署文档
Some checks failed
Translate / translate (push) Has been cancelled

This commit is contained in:
2026-09-04 11:22:02 +08:00
parent 8f5bf806e1
commit cdf44afc5b
3 changed files with 221 additions and 275 deletions

View File

@@ -64,7 +64,7 @@ export function registerChecklistTools(server: McpServer): void {
async ({ checklistItemPublicId, title, isCompleted, index }) => {
const data = await kanRequest("PATCH", `/checklists/items/${checklistItemPublicId}`, {
title,
isCompleted,
completed: isCompleted,
index,
});
return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] };