Create_Folder
Add a new folder to a specified directory or root on SharePoint using the MCP integration tool. Organize documents efficiently with custom folder names and parent directory options.
Instructions
Create a new folder in the specified directory or root if not specified
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder_name | Yes | ||
parent_folder | No |
Input Schema (JSON Schema)
{
"properties": {
"folder_name": {
"title": "Folder Name",
"type": "string"
},
"parent_folder": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Parent Folder"
}
},
"required": [
"folder_name"
],
"title": "create_folderArguments",
"type": "object"
}