create_folder
Create a new folder in a specified space on Dart MCP Server, adding a title, description, and selecting the folder type for organized workspace management.
Instructions
Create a new folder in a space
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Description of the folder | |
kind | No | Kind of folder | Default |
space_duid | Yes | Space DUID to create the folder in | |
title | Yes | Title 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"
}