Kintone MCP Server

update_space

スペースの設定を更新します

Input Schema

NameRequiredDescriptionDefault
fixedMemberNoメンバー固定設定
isPrivateNoプライベート設定
nameNoスペースの新しい名前
space_idYesスペースID
useMultiThreadNoマルチスレッド設定

Input Schema (JSON Schema)

{ "properties": { "fixedMember": { "description": "メンバー固定設定", "type": "boolean" }, "isPrivate": { "description": "プライベート設定", "type": "boolean" }, "name": { "description": "スペースの新しい名前", "type": "string" }, "space_id": { "description": "スペースID", "type": "string" }, "useMultiThread": { "description": "マルチスレッド設定", "type": "boolean" } }, "required": [ "space_id" ], "type": "object" }