drive_create_folder
Create a new folder in Google Drive using the specified name, optionally assigning it to a parent folder via ID. Ideal for organizing files through MCP Google Suite integration.
Instructions
Create a new folder in Google Drive
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the folder | |
parent_id | No | ID of parent folder |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the folder",
"type": "string"
},
"parent_id": {
"description": "ID of parent folder",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}