Google Drive
GOOGLEDRIVE_CREATE_FILE_FROM_TEXT
Creates a new file in google drive from provided text content (up to 10mb), supporting various formats including automatic conversion to google workspace types.
Remote googledrive
Other tools also called GOOGLEDRIVE_CREATE_FILE_FROM_TEXT?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"file_name": {
"type": "string",
"title": "File Name",
"examples": [
"meeting_notes.txt",
"My New Document"
],
"description": "Desired name for the new file on Google Drive."
},
"mime_type": {
"type": "string",
"title": "Mime Type",
"default": "text/plain",
"examples": [
"text/plain",
"application/vnd.google-apps.document",
"application/vnd.google-apps.spreadsheet",
"application/vnd.google-apps.presentation"
],
"description": "MIME type for the new file, determining how Google Drive interprets its content."
},
"parent_id": {
"type": "string",
"title": "Parent Id",
"default": null,
"examples": [
"1KMXpS5g9N04W44_1T7_IDN18V8x00AKE"
],
"nullable": true,
"description": "ID of the parent folder in Google Drive; if omitted, the file is created in the root of 'My Drive'."
},
"text_content": {
"type": "string",
"title": "Text Content",
"description": "Plain text content to be written into the new file."
}
}
}