Connect your Google Drive to agentic sessions so Claude can read and write files in your Drive.
Once connected, Claude can:
- List files and folders in your Google Drive
- Read file contents
- Create new files
- Update existing files
- Search your Drive
- Open or create an agentic session
- In the left sidebar, expand "MCP Integrations"
- Click "Connect" on the Google Drive card
- Authorize in the popup window
- Close the popup when you see "Authorization Successful"
Once connected, you can ask Claude things like:
- "List the files in my Google Drive"
- "Read the contents of 'meeting-notes.txt' from my Drive"
- "Create a new document in my Drive called 'project-summary.md' with this content..."
- "Find all PDFs in my Drive from last month"
Credentials are automatically removed when the session ends. To disconnect earlier, click "Disconnect" in the MCP Integrations accordion.
Administrators need to configure Google OAuth credentials once:
- Create a Google Cloud project and OAuth 2.0 credentials
- Set authorized redirect URI to:
https://your-vteam-backend/oauth2callback - Create a Kubernetes Secret in the operator namespace:
kubectl create secret generic google-workflow-app-secret \
--from-literal=GOOGLE_OAUTH_CLIENT_ID='your-client-id' \
--from-literal=GOOGLE_OAUTH_CLIENT_SECRET='your-client-secret'- Session-scoped: Credentials only exist for the current session
- Automatic cleanup: Credentials deleted when session ends
- No sharing: Your credentials never accessible to other users or sessions
- You control access: You must explicitly connect for each session
"Connect" button doesn't work
- Check that popup blockers aren't blocking the OAuth window
Claude says it can't access Drive
- Verify you see "Connected" status in MCP Integrations accordion
- Try disconnecting and reconnecting
- Check the session logs for errors
"Invalid scopes" error
- You may need to re-authorize with updated permissions
- Click "Disconnect" then "Connect" again
See the workspace-mcp documentation for details about what Drive operations are supported.