Loading...
Loading...
Google Drive integration. Manage Drives, Users, Permissions. Use when the user wants to interact with Google Drive data.
npx skill4agent add membranedev/application-skills google-drivemembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search google-drive --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| List Files | list-files | Lists the user's files in Google Drive with optional filtering and sorting |
| List Shared Drives | list-shared-drives | Lists the user's shared drives |
| List Permissions | list-permissions | Lists a file's permissions |
| List Comments | list-comments | Lists comments on a file |
| List Changes | list-changes | Lists changes in the user's Drive since a given start token |
| Get File | get-file | Gets a file's metadata by ID |
| Get Shared Drive | get-shared-drive | Gets a shared drive's metadata by ID |
| Get Permission | get-permission | Gets a specific permission by ID |
| Get About | get-about | Gets information about the user and their Drive |
| Get Start Page Token | get-start-page-token | Gets the starting page token for listing future changes |
| Create File Metadata | create-file-metadata | Creates a new file (metadata only, no content). |
| Create Folder | create-folder | Creates a new folder in Google Drive |
| Create Permission | create-permission | Shares a file by creating a permission for a user, group, domain, or anyone |
| Create Shared Drive | create-shared-drive | Creates a new shared drive |
| Create Comment | create-comment | Creates a comment on a file |
| Update File | update-file | Updates a file's metadata (name, description, etc.) |
| Update Permission | update-permission | Updates an existing permission (change role or expiration) |
| Update Shared Drive | update-shared-drive | Updates a shared drive's metadata |
| Delete File | delete-file | Permanently deletes a file (bypasses trash) |
| Delete Permission | delete-permission | Removes a permission from a file (unshare) |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY