Kintone MCP Server

add_thread_comment

スレッドにコメントを追加します

Input Schema

NameRequiredDescriptionDefault
mentionsNo
space_idYesスペースID
textYesコメント本文
thread_idYesスレッドID

Input Schema (JSON Schema)

{ "properties": { "mentions": { "items": { "properties": { "code": { "type": "string" }, "type": { "enum": [ "USER", "GROUP", "ORGANIZATION" ], "type": "string" } }, "required": [ "code", "type" ], "type": "object" }, "type": "array" }, "space_id": { "description": "スペースID", "type": "string" }, "text": { "description": "コメント本文", "type": "string" }, "thread_id": { "description": "スレッドID", "type": "string" } }, "required": [ "space_id", "thread_id", "text" ], "type": "object" }