Kintone MCP Server

create_record

kintoneアプリに新しいレコードを作成します

Input Schema

NameRequiredDescriptionDefault
app_idYeskintoneアプリのID
fieldsYesレコードのフィールド値

Input Schema (JSON Schema)

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