drive_create_folder
Create a new folder in Google Drive by specifying its name and parent folder ID using the MCP Google Workspace Server.
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"
}