Google Super

GOOGLESUPER_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 googlesuper

Other tools also called GOOGLESUPER_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",
        "0AGr3s6kL3rIuUk9PVA"
      ],
      "nullable": true,
      "description": "ID of the parent folder in Google Drive; if omitted, the file is created in the root of 'My Drive'. Must be a valid Google Drive folder ID, not a folder name. Use GOOGLEDRIVE_FIND_FOLDER to get the folder ID from a folder name."
    },
    "text_content": {
      "type": "string",
      "title": "Text Content",
      "description": "Plain text content to be written into the new file."
    }
  }
}