google_drive_create_file

Create and save new files directly in Google Drive by specifying the file name, content, MIME type, and folder location. Integrates with Google MCP for efficient file management.

Instructions

Create a new file in Google Drive

Input Schema

NameRequiredDescriptionDefault
contentYesContent of the file
folderIdNoID of the folder to create the file in
mimeTypeNoMIME type of the file (e.g., 'text/plain', 'application/vnd.google-apps.document')
nameYesName of the file to create

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Content of the file", "type": "string" }, "folderId": { "description": "ID of the folder to create the file in", "type": "string" }, "mimeType": { "description": "MIME type of the file (e.g., 'text/plain', 'application/vnd.google-apps.document')", "type": "string" }, "name": { "description": "Name of the file to create", "type": "string" } }, "required": [ "name", "content" ], "type": "object" }
ID: opwf6bop3j