google-drive
Original:🇺🇸 English
Translated
Read, export, upload, rename, move and delete Google Drive files explicitly selected or shared with the app via the Drive v3 REST API. Use when the user provides a Drive file ID/link or has selected files for the Google Drive connector.
15installs
Sourceacedatacloud/skills
Added on
NPX Install
npx skill4agent add acedatacloud/skills google-driveTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Drive Google Drive via . The user's OAuth bearer token is
in ; every call needs it as
. The token carries
plus identity scopes () and can only
access files the user selected, opened, created, or shared with this app.
curl + jq$GOOGLE_DRIVE_TOKENAuthorization: Bearer $GOOGLE_DRIVE_TOKENdrive.fileopenid email profileThe Drive API returns standard JSON; failures surface as
— show that
error verbatim to the user. means the token expired and the
user must re-install the connector.
means the file was not shared with this app, or the action needs a
broader Drive scope that is temporarily disabled during Google review.
{"error": {"code": 401|403|..., "message": "..."}}401403 insufficientPermissionsDo not use this skill for broad Drive discovery: no "list my recent
files", full-text search across Drive, shared-with-me scans, root-folder
cleanup, or bulk moves based on a Drive-wide query. Ask the user to pick
or paste the exact file/folder IDs first.
Before any destructive write (renaming, moving, trashing, or
bulk-mutating files) show the exact target list and ask the user to
confirm. Never trash by guessing an id — always echo back the file
name + path you're about to touch.
Always start with to confirm the connection
works AND learn which Google account you're operating against.
/about?fields=userOptional: Google Workspace CLI (gws
) for uploads
gwsgwsgoogleworkspace--page-all+uploadUse for uploads. A Drive multipart upload requires a
hand-formatted body with a JSON metadata part and a
binary file part separated by a boundary string — easy to get wrong from
curl. does it correctly. For everything else
(get, export, rename, move, trash, delete) the curl recipes below are
equivalent and shorter — stay on those.
gwsmultipart/relatedgws drive +uploadInstall
sh
npm install -g @googleworkspace/cli # or: brew install googleworkspace-cli
# Pre-built binaries also at https://github.com/googleworkspace/cli/releases
gws --versionAuth
gwsGOOGLE_WORKSPACE_CLI_TOKEN$GOOGLE_DRIVE_TOKENgwssh
export GOOGLE_WORKSPACE_CLI_TOKEN="$GOOGLE_DRIVE_TOKEN"Upload
sh
# Simple upload to My Drive (auto-detects MIME type, sets the file name
# from --name; falls back to the local filename if --name is omitted)
gws drive +upload ./report.pdf --name "Q1 Report"
# Upload into a specific folder, or with explicit metadata, via the
# generic Discovery method + --upload (multipart wire format handled
# for you)
gws drive files create \
--json '{"name":"report.pdf","parents":["FOLDER_ID"],"description":"Q1"}' \
--upload ./report.pdfBoth exit non-zero with a structured JSON error on stderr if Google
rejects the request — surface that verbatim.
Recipes
Verify auth (always run first)
sh
curl -sS -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
"https://www.googleapis.com/drive/v3/about?fields=user(displayName,emailAddress,photoLink),storageQuota(usage,limit)" \
| jq '{user, quota: .storageQuota}'List children of a selected folder
Only use this after the user explicitly selected or provided the folder ID.
sh
FOLDER_ID='1A2B3CdEfGhIjKlMn'
curl -sS -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
--get "https://www.googleapis.com/drive/v3/files" \
--data-urlencode "q='$FOLDER_ID' in parents and trashed = false" \
--data-urlencode 'fields=files(id,name,mimeType,size,modifiedTime),nextPageToken' \
| jq '.files'Get metadata for a single file
sh
FILE_ID='1A2B3CdEfGhIjKlMn'
curl -sS -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
"https://www.googleapis.com/drive/v3/files/$FILE_ID?fields=id,name,mimeType,size,modifiedTime,parents,owners,webViewLink,description"Download a binary file (PDF / image / zip / …)
sh
FILE_ID='1A2B3CdEfGhIjKlMn'
OUT=/tmp/download.bin
curl -sS -L -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
"https://www.googleapis.com/drive/v3/files/$FILE_ID?alt=media" \
-o "$OUT"
file "$OUT" && wc -c "$OUT"Read a Google Doc as plain markdown / text
Google-native files (Docs, Sheets, Slides) don't have raw bytes —
you have to ask Drive to export them to a concrete MIME type:
sh
DOC_ID='1A2B3CdEfGhIjKlMn'
# Markdown (best for chat-friendly summaries)
curl -sS -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
"https://www.googleapis.com/drive/v3/files/$DOC_ID/export?mimeType=text/markdown" \
> /tmp/doc.md
head -40 /tmp/doc.md
# Plain text fallback for older docs
curl -sS -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
"https://www.googleapis.com/drive/v3/files/$DOC_ID/export?mimeType=text/plain" \
> /tmp/doc.txtCommon export MIME types:
| native MIME | export to |
|---|---|
| |
| |
| |
Read a Google Sheet as CSV
sh
SHEET_ID='1A2B3CdEfGhIjKlMn'
curl -sS -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
"https://www.googleapis.com/drive/v3/files/$SHEET_ID/export?mimeType=text/csv" \
> /tmp/sheet.csv
head /tmp/sheet.csvThe Drive endpoint returns the first sheet only. For
multi-tab access the user needs to install a separate Google Sheets
connector (currently out of catalog) — explain that and stop.
exportGet permissions / sharing on a file
sh
FILE_ID='1A2B3CdEfGhIjKlMn'
curl -sS -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
"https://www.googleapis.com/drive/v3/files/$FILE_ID/permissions?fields=permissions(id,type,role,emailAddress,domain,deleted)" \
| jq '.permissions[] | {who: (.emailAddress // .domain // .type), role}'Write recipes
These only work for files and folders available through .
If Google returns , surface the error and
ask the user to select/share the target file with the app.
Always echo the target name + path back to the user before
trashing or bulk-moving anything.
drive.file403 insufficientPermissionsRename a file
sh
FILE_ID='1A2B3CdEfGhIjKlMn'
NEW_NAME='2026 Q2 OKR (final).gdoc'
curl -sS -X PATCH -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
-H 'Content-Type: application/json' \
--data "{\"name\":$(jq -nr --arg n "$NEW_NAME" '$n')}" \
"https://www.googleapis.com/drive/v3/files/$FILE_ID?fields=id,name"Move a file to a different folder
Drive's folder model is parent-id based. Move = remove old parent,
add new parent:
sh
FILE_ID='1A2B3CdEfGhIjKlMn'
NEW_PARENT='1XYZnewFolderId'
# Read existing parents (so we can pass them in removeParents)
OLD_PARENTS=$(curl -sS -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
"https://www.googleapis.com/drive/v3/files/$FILE_ID?fields=parents" \
| jq -r '.parents | join(",")')
curl -sS -X PATCH -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
--data '' \
"https://www.googleapis.com/drive/v3/files/$FILE_ID?addParents=$NEW_PARENT&removeParents=$OLD_PARENTS&fields=id,name,parents"Create a new folder
sh
PARENT_ID='1XYZparentFolderId' # or 'root' for My Drive root
curl -sS -X POST -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
-H 'Content-Type: application/json' \
--data "{\"name\":\"Reports / 2026Q2\",\"mimeType\":\"application/vnd.google-apps.folder\",\"parents\":[\"$PARENT_ID\"]}" \
"https://www.googleapis.com/drive/v3/files?fields=id,name,webViewLink" \
| jqUpload a file (multipart so metadata + bytes go in one request)
sh
LOCAL=/tmp/report.pdf
NAME='Q2 report.pdf'
PARENT_ID='1XYZparentFolderId'
MIME='application/pdf'
BOUNDARY='aceDataBoundary'
META=$(jq -nc --arg n "$NAME" --arg p "$PARENT_ID" '{name:$n, parents:[$p]}')
{
printf -- '--%s\r\n' "$BOUNDARY"
printf 'Content-Type: application/json; charset=UTF-8\r\n\r\n'
printf '%s\r\n' "$META"
printf -- '--%s\r\n' "$BOUNDARY"
printf 'Content-Type: %s\r\n\r\n' "$MIME"
cat "$LOCAL"
printf '\r\n--%s--\r\n' "$BOUNDARY"
} > /tmp/_drive_upload.bin
curl -sS -X POST -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
-H "Content-Type: multipart/related; boundary=$BOUNDARY" \
--data-binary @/tmp/_drive_upload.bin \
"https://www.googleapis.com/upload/drive/v3/files?uploadType=multipart&fields=id,name,webViewLink" \
| jqFor a media-only upload (no metadata) use ; for
files >5 MB use (covered in [Drive's docs]
(https://developers.google.com/drive/api/guides/manage-uploads#resumable)).
uploadType=mediauploadType=resumableReplace the contents of an existing file
sh
FILE_ID='1A2B3CdEfGhIjKlMn'
LOCAL=/tmp/report-v2.pdf
curl -sS -X PATCH -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
-H 'Content-Type: application/pdf' \
--data-binary @"$LOCAL" \
"https://www.googleapis.com/upload/drive/v3/files/$FILE_ID?uploadType=media&fields=id,name,modifiedTime"Metadata stays the same (id / parents / name) — only the bytes are
replaced and Drive bumps .
modifiedTimeTrash a file (or restore one)
sh
FILE_ID='1A2B3CdEfGhIjKlMn'
curl -sS -X PATCH -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
-H 'Content-Type: application/json' \
--data '{"trashed":true}' \
"https://www.googleapis.com/drive/v3/files/$FILE_ID?fields=id,name,trashed"
# Restore:
curl -sS -X PATCH -H "Authorization: Bearer $GOOGLE_DRIVE_TOKEN" \
-H 'Content-Type: application/json' \
--data '{"trashed":false}' \
"https://www.googleapis.com/drive/v3/files/$FILE_ID?fields=id,name,trashed"Prefer over — is permanent and the
user can't undo it. Only use when they explicitly say
"permanently delete".
trashed:trueDELETEDELETEDELETECommon error codes
| HTTP | meaning | what to tell the user |
|---|---|---|
| token expired / revoked | "Reconnect the Google Drive connector on the Connections page." |
| target not shared with app / broader Drive scope disabled | "This file isn't available to the app under the current |
| quota | retry once after 5–10s; if it persists, tell the user. |
| wrong file id OR file isn't visible to this app | double-check the id; ask the user to select or share the file with the connector. |
| malformed | print the |
Never log or echo — treat it as a secret.
$GOOGLE_DRIVE_TOKEN