Kintone MCP Server

update_app_settings

kintoneアプリの一般設定を変更します

Input Schema

NameRequiredDescriptionDefault
app_idYesアプリID
descriptionNoアプリの説明(10,000文字以内、HTMLタグ使用可)
enableBulkDeletionNoレコード一括削除の有効化
enableCommentsNoコメント機能の有効化
enableDuplicateRecordNoレコード再利用機能の有効化
enableInlineRecordEditingNoインライン編集の有効化
enableThumbnailsNoサムネイル表示の有効化
firstMonthOfFiscalYearNo第一四半期の開始月(1-12)
iconNo
nameNoアプリの名前(1文字以上64文字以内)
numberPrecisionNo
themeNoデザインテーマ
titleFieldNo

Input Schema (JSON Schema)

{ "properties": { "app_id": { "description": "アプリID", "type": "number" }, "description": { "description": "アプリの説明(10,000文字以内、HTMLタグ使用可)", "type": "string" }, "enableBulkDeletion": { "description": "レコード一括削除の有効化", "type": "boolean" }, "enableComments": { "description": "コメント機能の有効化", "type": "boolean" }, "enableDuplicateRecord": { "description": "レコード再利用機能の有効化", "type": "boolean" }, "enableInlineRecordEditing": { "description": "インライン編集の有効化", "type": "boolean" }, "enableThumbnails": { "description": "サムネイル表示の有効化", "type": "boolean" }, "firstMonthOfFiscalYear": { "description": "第一四半期の開始月(1-12)", "type": "string" }, "icon": { "properties": { "file": { "properties": { "fileKey": { "description": "アップロード済みファイルのキー", "type": "string" } }, "type": "object" }, "key": { "description": "PRESTETアイコンの識別子", "type": "string" }, "type": { "description": "アイコンの種類", "enum": [ "PRESET", "FILE" ], "type": "string" } }, "type": "object" }, "name": { "description": "アプリの名前(1文字以上64文字以内)", "type": "string" }, "numberPrecision": { "properties": { "decimalPlaces": { "description": "小数部の桁数(0-10)", "type": "string" }, "digits": { "description": "全体の桁数(1-30)", "type": "string" }, "roundingMode": { "description": "数値の丸めかた", "enum": [ "HALF_EVEN", "UP", "DOWN" ], "type": "string" } }, "type": "object" }, "theme": { "description": "デザインテーマ", "enum": [ "WHITE", "RED", "GREEN", "BLUE", "YELLOW", "BLACK" ], "type": "string" }, "titleField": { "properties": { "code": { "description": "MANUALモード時のフィールドコード", "type": "string" }, "selectionMode": { "description": "タイトルフィールドの選択方法", "enum": [ "AUTO", "MANUAL" ], "type": "string" } }, "type": "object" } }, "required": [ "app_id" ], "type": "object" }