Google Drive Integration
The Google Drive integration allows AI agents to list folders, read file contents, create documents, and run searches across your Drive — without handling Google OAuth directly.
Connecting Google Drive #
Go to Dashboard → Tools → Google Drive and click Connect. Complete the Google OAuth consent screen and grant the requested permissions.
AgentBridge requests the minimum Drive scopes required. Sensitive scopes such as full Drive access are not requested.
Available Tools #
| Tool name | Description | Auth scope |
|---|---|---|
gdrive_list_files | List files and folders in a directory | read |
gdrive_get_file | Download or read the content of a file | read |
gdrive_search | Full-text search across Drive files | read |
gdrive_create_file | Upload or create a new file | write |
gdrive_create_folder | Create a new folder | write |
Example — Search Files #
typescript
const result = await agentbridge.execute({
tool: 'gdrive_search',
input: {
query: 'Q1 2026 budget',
mimeType: 'application/vnd.google-apps.spreadsheet',
limit: 10,
},
});
Was this page helpful?