Integrations Last updated March 14, 2026

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 nameDescriptionAuth scope
gdrive_list_filesList files and folders in a directoryread
gdrive_get_fileDownload or read the content of a fileread
gdrive_searchFull-text search across Drive filesread
gdrive_create_fileUpload or create a new filewrite
gdrive_create_folderCreate a new folderwrite

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,
  },
});