Kintone MCP Server

add_record_comment

kintoneレコードにコメントを追加します

Input Schema

NameRequiredDescriptionDefault
app_idYeskintoneアプリのID
mentionsNoメンション情報の配列
record_idYesレコードID
textYesコメント本文

Input Schema (JSON Schema)

{ "properties": { "app_id": { "description": "kintoneアプリのID", "type": "number" }, "mentions": { "description": "メンション情報の配列", "items": { "properties": { "code": { "description": "メンション対象のユーザー、グループ、組織のコード", "type": "string" }, "type": { "description": "メンション対象の種類", "enum": [ "USER", "GROUP", "ORGANIZATION" ], "type": "string" } }, "required": [ "code", "type" ], "type": "object" }, "type": "array" }, "record_id": { "description": "レコードID", "type": "number" }, "text": { "description": "コメント本文", "type": "string" } }, "required": [ "app_id", "record_id", "text" ], "type": "object" }