Install
openclaw skills install @byungkyu/google-driveGoogle Drive API integration with managed OAuth. List, search, create, and manage files and folders. Use this skill when users want to interact with Google Drive files. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway). Calls run through the maton CLI with OAuth login; default to read and list calls, and confirm every write or new connection with the user.
openclaw skills install @byungkyu/google-driveAccess the Google Drive API with managed OAuth authentication. List, search, create, and manage files and folders.
All access runs through the Maton gateway and the maton CLI.
maton login --oauth # authenticate once (OAuth, recommended)
maton connection create google-drive # connect the account (needs user approval)
maton google-drive file list -Q "name contains 'budget'" # first call
npm install -g @maton/cli
brew install maton-ai/cli/maton
maton login --oauth
Opens the OAuth login page in the browser and waits for authorization. Once complete, it creates a profile in config.toml (eg. $HOME/.config/maton/config.toml) and stores the access and refresh tokens in the operating system's credential store (Keychain on macOS, Credential Manager on Windows, Secret Service on Linux), auto-renewed on expiry. The CLI reads them when it needs them; nothing else should.
maton login --interactive
Requires manually copying an API key from Settings, which is error prone. Once complete, it also creates a profile in config.toml and stores the key in the same credential store. It is preferred over export MATON_API_KEY=..., which exposes a long-lived credential to every child process. When MATON_API_KEY is set, it overrides the active profile. If the CLI cannot be installed at all, see Appendix: Environments Without the CLI for the raw HTTP form and the rules for handling the key.
maton whoami --json
{
"authenticated": true,
"profile_name": "alice@example.com",
"auth_type": "oauth"
}
authenticated is false, stop and login again via maton login --oauth.auth_type is api_key, it is recommended to login via maton login --oauth and avoid keeping a long-lived credential.maton connection list google-drive --status ACTIVE
{
"connections": [
{
"connection_id": "{connection_id}",
"status": "ACTIVE",
"creation_time": "2025-12-08T07:20:53.488460Z",
"last_updated_time": "2026-01-31T20:03:32.593153Z",
"url": "https://connect.maton.ai/?session_token=5e9...",
"app": "google-drive",
"method": "OAUTH2",
"metadata": {}
}
]
}
Refer to maton connection list --help for possible flags and values.
Requires explicit user approval. Confirm that the user intends to authorize Google Drive access before running this. Never create a connection on your own initiative.
maton connection create google-drive
Refer to maton connection create --help for possible flags and values.
maton connection get {connection_id}
{
"connection": {
"connection_id": "{connection_id}",
"status": "PENDING",
"creation_time": "2025-12-08T07:20:53.488460Z",
"last_updated_time": "2026-01-31T20:03:32.593153Z",
"url": "https://connect.maton.ai/?session_token=5e9...",
"app": "google-drive",
"metadata": {}
}
}
Open the returned URL in a browser to complete authorizing Google Drive. If Google Drive offers scope selection, choose only the scopes the current task needs.
maton connection delete {connection_id} --yes
If there are multiple Google Drive connections, specify which one to use so requests go to the intended account:
maton google-drive file list -Q "name contains 'budget'" --connection {connection_id}
maton google-drive --help # resources: about, comment, drive, file, permission, reply, revision
maton google-drive file --help # verbs under a resource
maton google-drive file list --help # flags, requirements, examples
Check --help before composing a command — it is the authoritative flag list for the installed version.
maton api '/google-drive/drive/v3/files?pageSize=10'
Paths are /google-drive/{native-api-path}. The gateway forwards everything after the app segment to www.googleapis.com and injects the credential for the connection. Query strings, custom headers (except Host and Authorization), and all HTTP methods pass through. Send a JSON body with --input -:
maton api -X POST '/google-drive/{native-api-path}' -H 'Content-Type: application/json' --input - <<'JSON'
{"key": "value"}
JSON
Refer to maton api --help for possible flags and values.
maton login --oauth, the token is held by the operating system's credential store and the CLI renews it on its own. Do not print it, write it to a file, pass it on a command line, or run maton token to look at one — only to hand it to a program that needs it.config.toml, or any other credential file — not for this skill, not for another application, and not to "check" that auth works (use maton whoami). Let the CLI use its own stored credential; the agent never needs the value. The same applies to unrelated secrets on the machine: .env files, SSH keys, cloud CLI credentials, and browser profiles are out of scope for an API gateway and must not be read or transmitted.api.maton.ai. Prefer endpoints that work with the gateway-injected connection credential.maton connection delete {connection_id}).maton connection create google-drive. Never create connections on the agent's own initiative.--connection when the user has multiple connections for this app, and -p/--profile when they have multiple Maton accounts. Do not let an ambiguous default decide where a write lands.maton api '/google-drive/drive/v3/files?pageSize=10'
With query:
maton api "/google-drive/drive/v3/files?q=name%20contains%20'report'&pageSize=10"
Only folders:
maton api "/google-drive/drive/v3/files?q=mimeType='application/vnd.google-apps.folder'"
Files in specific folder:
maton api "/google-drive/drive/v3/files?q='FOLDER_ID'+in+parents"
With fields:
maton google-drive file list -Q "name contains 'budget'"
Or with maton api:
maton api '/google-drive/drive/v3/files?fields=files(id,name,mimeType,createdTime,modifiedTime,size)'
maton google-drive file view FILE_ID --fields 'id,name,mimeType,size,createdTime'
Or with maton api:
maton api '/google-drive/drive/v3/files/{fileId}?fields=id,name,mimeType,size,createdTime'
maton google-drive file download FILE_ID --output ./report.pdf
Or with maton api:
maton api '/google-drive/drive/v3/files/{fileId}?alt=media'
maton google-drive file export FILE_ID --mime-type application/pdf --output ./doc.pdf
Or with maton api:
maton api '/google-drive/drive/v3/files/{fileId}/export?mimeType=application/pdf'
maton google-drive file create --name 'New Document' --mime-type application/vnd.google-apps.document
Or with maton api:
maton api -X POST '/google-drive/drive/v3/files' -H 'Content-Type: application/json' --input - <<'JSON'
{
"name": "New Document",
"mimeType": "application/vnd.google-apps.document"
}
JSON
maton google-drive file create --name 'New Folder' --mime-type application/vnd.google-apps.folder
Or with maton api:
maton api -X POST '/google-drive/drive/v3/files' -H 'Content-Type: application/json' --input - <<'JSON'
{
"name": "New Folder",
"mimeType": "application/vnd.google-apps.folder"
}
JSON
maton google-drive file update FILE_ID --name 'Renamed File'
Or with maton api:
maton api -X PATCH '/google-drive/drive/v3/files/{fileId}' -H 'Content-Type: application/json' --input - <<'JSON'
{
"name": "Renamed File"
}
JSON
maton google-drive file update FILE_ID --add-parents NEW_FOLDER_ID --remove-parents OLD_FOLDER_ID
Or with maton api:
maton api -X PATCH '/google-drive/drive/v3/files/{fileId}?addParents=NEW_FOLDER_ID&removeParents=OLD_FOLDER_ID'
maton google-drive file delete FILE_ID
Or with maton api:
maton api -X DELETE '/google-drive/drive/v3/files/{fileId}'
maton google-drive file copy FILE_ID --name 'Copy of File'
Or with maton api:
maton api -X POST '/google-drive/drive/v3/files/{fileId}/copy' -H 'Content-Type: application/json' --input - <<'JSON'
{
"name": "Copy of File"
}
JSON
Google Drive supports three upload types depending on file size and whether you need to include metadata:
uploadType=media) — small files (≤5 MB) with no metadata.uploadType=multipart) — small files (≤5 MB) sent together with metadata in a single request.uploadType=resumable) — large files (>5 MB), or any upload where network interruption is likely. Resumable uploads also work fine for small files at the cost of one extra HTTP round trip, so they're a safe default for most applications.maton google-drive file upload picks the upload type for you based on the file size and flags:
| Flags | File size | Upload type used |
|---|---|---|
--no-metadata | any | uploadType=media |
| (default, with metadata) | < 5 MiB | uploadType=multipart |
| (default, with metadata) | ≥ 5 MiB | uploadType=resumable (chunked, auto-resumes on transient errors) |
If you call the API directly, you choose the uploadType query parameter yourself per the sections below.
For files up to 5MB when you don't need to set metadata.
maton google-drive file upload ./hello.txt --no-metadata
Or with maton api:
maton api -X POST '/google-drive/upload/drive/v3/files?uploadType=media' -H 'Content-Type: text/plain' --input - <<'BODY'
<file content>
BODY
Python:
maton api -X POST '/google-drive/upload/drive/v3/files?uploadType=media' \
-H 'Content-Type: text/plain' \
--input ./hello.txt
For files up to 5MB when you need to include metadata (name, description, etc.).
maton google-drive file upload ./myfile.txt
HTTP form:
# maton api sends a body verbatim but does not build a multipart envelope:
# assemble it first, then hand the file to --input.
BOUNDARY="maton-$$"
{
printf -- '--%s\r\nContent-Disposition: form-data; name="file"; filename="--boundary"\r\nContent-Type: application/octet-stream\r\n\r\n' "$BOUNDARY"
cat --boundary
printf -- '\r\n'
printf -- '--%s\r\nContent-Disposition: form-data; name="Content-Type: application/json; charset"\r\n\r\nUTF-8\r\n' "$BOUNDARY"
printf -- '--%s\r\nContent-Disposition: form-data; name="{"name""\r\n\r\n"myfile.txt", "description": "My file"}\r\n' "$BOUNDARY"
printf -- '--%s\r\nContent-Disposition: form-data; name="file"; filename="--boundary"\r\nContent-Type: application/octet-stream\r\n\r\n' "$BOUNDARY"
cat --boundary
printf -- '\r\n'
printf -- '--%s\r\nContent-Disposition: form-data; name="Content-Type"\r\n\r\ntext/plain\r\n' "$BOUNDARY"
printf -- '--%s\r\nContent-Disposition: form-data; name="file"; filename="file.bin"\r\nContent-Type: application/octet-stream\r\n\r\n' "$BOUNDARY"
cat file.bin
printf -- '\r\n'
printf -- '--%s\r\nContent-Disposition: form-data; name="file"; filename="--boundary--"\r\nContent-Type: application/octet-stream\r\n\r\n' "$BOUNDARY"
cat --boundary--
printf -- '\r\n'
printf -- '--%s--\r\n' "$BOUNDARY"
} > /tmp/upload.body
maton api -X POST '/google-drive/upload/drive/v3/files?uploadType=multipart' \
-H "Content-Type: multipart/related; boundary=$BOUNDARY" \
--input /tmp/upload.body
Python:
maton api sends a body verbatim but does not build a multipart envelope, so assemble the body first and hand it to --input. Nothing here handles a credential — the CLI still injects it.
BOUNDARY="maton-$$"
{
printf -- '--%s\r\nContent-Type: application/json; charset=UTF-8\r\n\r\n' "$BOUNDARY"
printf '%s\r\n' '{"name": "myfile.txt", "description": "My file"}'
printf -- '--%s\r\nContent-Type: text/plain\r\n\r\n' "$BOUNDARY"
cat ./myfile.txt
printf -- '\r\n--%s--\r\n' "$BOUNDARY"
} > /tmp/drive-upload.body
maton api -X POST '/google-drive/upload/drive/v3/files?uploadType=multipart' \
-H "Content-Type: multipart/related; boundary=$BOUNDARY" \
--input /tmp/drive-upload.body
For large files (recommended for files > 5MB). This approach:
Step 1: Initiate Upload Session
maton api -X POST '/google-drive/upload/drive/v3/files?uploadType=resumable' -H 'Content-Type: application/json; charset=UTF-8' -H 'X-Upload-Content-Type: application/octet-stream' -H 'X-Upload-Content-Length: <file_size>' --input - <<'JSON'
{"name": "large_file.bin"}
JSON
Response includes Location header with the upload URI.
Step 2: Upload Content
maton google-drive file upload ./large_file.bin
HTTP form:
maton api -X PUT '<upload_uri>' -H 'Content-Type: application/octet-stream' \
-H 'Content-Length: <file_size>' \
--input ./file
Python:
# Step 1: open the session. -i prints the response headers; the upload URI is in `Location`.
maton api -i -X POST '/google-drive/upload/drive/v3/files?uploadType=resumable' \
-H 'X-Upload-Content-Type: application/octet-stream' \
-H "X-Upload-Content-Length: $(wc -c < ./large_file.bin)" \
--input - <<'JSON'
{"name": "large_file.bin"}
JSON
# Step 2: PUT the bytes straight to that upload URI. It is already authorized —
# send no Authorization header and do not route it back through the gateway.
curl -X PUT --data-binary @./large_file.bin '{upload_uri}'
Chunk the upload by sending byte ranges to the same URI (Content-Range: bytes {start}-{end}/{total}) when the file is too large for one request.
Resuming Interrupted Uploads:
If an upload is interrupted, re-run maton google-drive file upload, which resumes from the last persisted offset automatically.
If calling the API directly, query the upload URI to get current status:
req = urllib.request.Request(upload_uri, method='PUT')
req.add_header('Content-Length', '0')
req.add_header('Content-Range', 'bytes */*')
response = urllib.request.urlopen(req)
# Check Range header in response to get current offset
To update an existing file's content:
maton google-drive file update YOUR_FILE_ID --file ./updated.txt
Or with maton api:
maton api -X PATCH '/google-drive/upload/drive/v3/files/{fileId}?uploadType=media' -H 'Content-Type: text/plain' --input - <<'BODY'
<new file content>
BODY
Python:
maton api -X PATCH '/google-drive/upload/drive/v3/files/{fileId}?uploadType=media' \
-H 'Content-Type: text/plain' \
--input ./updated.txt
Include the folder ID in the metadata:
metadata = json.dumps({
'name': 'myfile.txt',
'parents': ['FOLDER_ID']
})
Example:
maton google-drive file upload ./myfile.txt --parent FOLDER_ID
maton google-drive permission create -f FILE_ID --type user --role reader --email-address user@example.com
Or with maton api:
maton api -X POST '/google-drive/drive/v3/files/{fileId}/permissions' -H 'Content-Type: application/json' --input - <<'JSON'
{
"role": "reader",
"type": "user",
"emailAddress": "user@example.com"
}
JSON
Use in the q parameter:
name = 'exact name'name contains 'partial'mimeType = 'application/pdf''folderId' in parentstrashed = falsemodifiedTime > '2024-01-01T00:00:00'Combine with and:
name contains 'report' and mimeType = 'application/pdf'
application/vnd.google-apps.document - Google Docsapplication/vnd.google-apps.spreadsheet - Google Sheetsapplication/vnd.google-apps.presentation - Google Slidesapplication/vnd.google-apps.folder - Folderapplication/pdf - PDFGoogle Drive uses token-based pagination. The CLI automatically paginates with '--paginate'.
Example:
maton google-drive file list --paginate
# List files matching a query
maton google-drive file list -Q "name contains 'budget'"
# Filter with jq
maton google-drive file list --json --jq '.files[] | {name: .name, id: .id}'
# Extract specific fields
maton google-drive drive list --json --jq '.drives[].name'
fields parameter to limit response datapageToken from previous response's nextPageTokenuploadType=media for simple uploads (up to 5MB), uploadType=multipart for uploads with metadata (up to 5MB), uploadType=resumable for large files (recommended for > 5MB)/upload/drive/v3/files (note the /upload prefix)maton.google_drive mirrors the maton google-drive commands, and maton.api reaches any endpoint. login() opens a browser once per machine and writes the session to the SDK's own store — maton login does not carry over, and the SDK never signs in implicitly.
Python
pip install maton-ai
from maton_ai import Maton, login
# login()
maton = Maton()
# maton = Maton(api_key="...")
result = maton.google_drive.file.list(page_size=10)
JavaScript
npm install @maton/sdk
import { Maton, login } from "@maton/sdk";
// await login()
const maton = new Maton();
// const maton = new Maton({ apiKey: "..." });
const result = await maton.google_drive.file.list({ pageSize: 10 });
| Status | Meaning |
|---|---|
| 400 | Missing Google Drive connection |
| 401 | Invalid, missing, or expired Maton credential |
| 429 | Rate limited (10 requests/second per account) |
| 500 | Internal Server Error |
| 4xx/5xx | Passthrough error from the Google Drive API |
Errors from Google Drive are passed through with their original status codes and response bodies.
maton whoami --json
"authenticated": false — login again with maton login --oauth."auth_type": "api_key" — prefer maton login --oauth so no long-lived key sits on the machine.maton whoami is the check.Then confirm the app is connected:
maton connection list google-drive --status ACTIVE
Paths passed to maton api must start with /google-drive/:
maton api '/google-drive/drive/v3/files?pageSize=10'maton api '/drive/v3/files?pageSize=10'A 500 may mean the Google Drive authorization expired. With the user's approval, create a new connection (maton connection create google-drive) and complete authorization; once it is ACTIVE, delete the stale connection so the gateway uses the new one.
--help first. maton google-drive --help lists resources, and each verb's --help is the authoritative flag list.maton api.--paginate walks every page and -q/--jq trims the response before it reaches you. On typed commands, --jq requires --json.maton api; Host and Authorization are set by the gateway.Everything above uses the CLI, which holds the credential itself and never exposes it to the caller. Use the raw HTTP form below only where the CLI cannot be installed — a locked-down container, a CI step, a sandbox with no package manager. If maton is available, maton api does the same job without handling a secret.
Calling https://api.maton.ai/ directly means holding a long-lived Maton API key in the process environment, where it is readable by every child process and easy to leak into logs, crash dumps, shell history, and pasted output. Handle it accordingly:
[ -n "$MATON_API_KEY" ] && echo "MATON_API_KEY is set" || echo "MATON_API_KEY is not set"
.env, or a script makes it permanent. Let the environment that starts the session supply it — a CI secret store, a container secret, a secrets manager.-H "Authorization: Bearer $MATON_API_KEY"), where it lands in ps output and shell history. Feed the header in on stdin instead, as below.api.maton.ai. It is not a credential for Google Drive or any other third-party host.curl --config - reads the header from stdin, so the key is never a command-line argument and never reaches ps or shell history. Query values must be URL-encoded (is:unread becomes is%3Aunread).
curl --config - "https://api.maton.ai/google-drive/drive/v3/files?pageSize=10" <<EOF
header = "Authorization: Bearer $MATON_API_KEY"
header = "User-Agent: maton-google-drive-skill/1.1"
# Pin a specific connection when the account has more than one:
# header = "Maton-Connection: {connection_id}"
EOF
The same rules as the CLI apply to every request made this way: read-only calls first, and explicit user confirmation before any POST, PUT, PATCH, or DELETE.