Kintone MCP Server

update_record

kintoneアプリの既存レコードを更新します

Input Schema

NameRequiredDescriptionDefault
app_idYeskintoneアプリのID
fieldsYes更新するフィールド値
record_idYesレコードID

Input Schema (JSON Schema)

{ "properties": { "app_id": { "description": "kintoneアプリのID", "type": "number" }, "fields": { "description": "更新するフィールド値", "type": "object" }, "record_id": { "description": "レコードID", "type": "number" } }, "required": [ "app_id", "record_id", "fields" ], "type": "object" }