Google Super

GOOGLESUPER_DOWNLOAD_FILE

Downloads a file from Google Drive by its ID. For Google Workspace documents (Docs, Sheets, Slides), optionally exports to a specified `mime_type`. For other file types, downloads in their native format regardless of mime_type. Examples: Export a Google Doc to plain text: {"file_id": "1N2o5xQWmAbCdEfGhIJKlmnOPq", "mime_type": "text/plain"} Download a Google Sheet as CSV: {"file_id": "1ZyXwVuTsRqPoNmLkJiHgFeDcB", "mime_type": "text/csv"}

Remote googlesuper

Other tools also called GOOGLESUPER_DOWNLOAD_FILE? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "file_id": {
      "type": "string",
      "title": "File Id",
      "examples": [
        "1aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789"
      ],
      "description": "The unique identifier of the file to be downloaded from Google Drive. This ID can typically be found in the file's URL in Google Drive or obtained from API calls that list files."
    },
    "mime_type": {
      "enum": [
        "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
        "application/vnd.oasis.opendocument.text",
        "application/rtf",
        "application/pdf",
        "text/plain",
        "application/zip",
        "application/epub+zip",
        "text/html",
        "text/markdown",
        "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
        "application/x-vnd.oasis.opendocument.spreadsheet",
        "text/csv",
        "text/tab-separated-values",
        "application/vnd.openxmlformats-officedocument.presentationml.presentation",
        "application/vnd.oasis.opendocument.presentation",
        "image/jpeg",
        "image/png",
        "image/svg+xml",
        "application/vnd.google-apps.script+json",
        "application/vnd.google-apps.vid"
      ],
      "type": "string",
      "title": "MimeType",
      "default": null,
      "examples": [
        "application/pdf",
        "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
        "text/csv",
        "text/plain",
        "text/html",
        "text/markdown"
      ],
      "nullable": true,
      "description": "Target MIME type for exporting Google Workspace documents (Google Docs, Sheets, Slides, Drawings). REQUIRED for Google Workspace files (will fail if omitted). Supported export formats vary by file type: - Google Docs: application/pdf, text/plain, text/html, application/rtf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/epub+zip, text/markdown - Google Sheets: application/pdf, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/zip (HTML) - Google Slides: application/pdf, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/plain For non-Google Workspace files (PDFs, images, videos, etc.), this parameter MUST be omitted or null; specifying a mime_type will cause an error."
    }
  }
}