Kintone MCP Server

add_thread_comment

Add comments to threads in Kintone spaces, enabling collaboration by including mentions of users, groups, or organizations with specified text. Requires space ID, thread ID, and comment content.

Instructions

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

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" }
ID: dki958qnks