Skip to content

Google Drive nodes

Tools for managing files and folders in Google Drive.  These nodes are also served as MCP tools on the google_drive MCP server. Back to the full node reference.

Google Drive Create Folder

google_drive_create_folder · natural-language configurable · 1 credit on Cloud

Create a new folder in Google Drive.

Credential: Google Drive (OAuth)

Parameters

FieldTypeRequiredDescription
folderNamestringName of the folder to create.
parentFolderIdstringIdentifier of the parent folder; use "root" for the drive root. Default: root.

Output

Returns a list of records — reference fields downstream as $<node>.folderId.

FieldTypeDescription
folderIdstringIdentifier of the created folder.
folderNamestringName of the created folder.
statusbooleanWhether the folder was created successfully.
webViewLinkstringWeb view link to open the folder in Google Drive.

Google Drive Create Text File

google_drive_create_text_file · natural-language configurable · 1 credit on Cloud

Create a plain text file in Google Drive.

Credential: Google Drive (OAuth)

Parameters

FieldTypeRequiredDescription
contentstringText content to write to the file.
fileNamestringName of the text file to create.
parentFolderIdstringIdentifier of the parent folder; use "root" for the drive root. Default: root.

Output

Returns a list of records — reference fields downstream as $<node>.fileId.

FieldTypeDescription
fileIdstringIdentifier of the created file.
fileNamestringName of the created file.
statusbooleanWhether the file was created successfully.
webViewLinkstringWeb view link to open the file in Google Drive.

Google Drive Get File

google_drive_get_file · natural-language configurable · read-only · idempotent · 1 credit on Cloud

Retrieve a file from Google Drive along with its metadata.

Credential: Google Drive (OAuth)

Parameters

FieldTypeRequiredDescription
fileIdstringIdentifier of the Google Drive file to retrieve.

Output

Returns a list of records — reference fields downstream as $<node>.file.

FieldTypeDescription
filestringFile contents (text) or hosted URL for binary uploads.
metadataobject

Google Drive Upload File

google_drive_upload_file · natural-language configurable · 1 credit on Cloud

Upload one or more files to Google Drive from a list of source URLs.

Credential: Google Drive (OAuth)

Parameters

FieldTypeRequiredDescription
filesarray<string>List of file URLs to upload to Google Drive.
folderIdstringIdentifier of the destination folder; use "root" for the drive root. Default: root.

Output

Returns a list of records — reference fields downstream as $<node>.status.

FieldTypeDescription
statusbooleanWhether all files were uploaded successfully.