Dart MCP Server

create_folder

Create a new folder in a space

Input Schema

NameRequiredDescriptionDefault
descriptionNoDescription of the folder
kindNoKind of folderDefault
space_duidYesSpace DUID to create the folder in
titleYesTitle of the folder

Input Schema (JSON Schema)

{ "properties": { "description": { "description": "Description of the folder", "type": "string" }, "kind": { "default": "Default", "description": "Kind of folder", "enum": [ "Default", "Reports", "Other" ], "type": "string" }, "space_duid": { "description": "Space DUID to create the folder in", "type": "string" }, "title": { "description": "Title of the folder", "type": "string" } }, "required": [ "space_duid", "title" ], "type": "object" }