google-workspace-mcpGmail, Calendar, Drive, Docs, Sheets — NO Google Cloud Console required. Just OAuth sign-in. Zero setup complexity vs traditional Google API integrations.
Install via ClawdBot CLI:
clawdbot install dru-ca/google-workspace-mcpRequires:
Why this skill? Traditional Google API access requires creating a project in Google Cloud Console, enabling APIs, creating OAuth credentials, and downloading client_secret.json. This skill skips ALL of that.
Uses @presto-ai/google-workspace-mcp — just sign in with your Google account and go.
| Traditional Approach | This Skill |
|---------------------|------------|
| Create Google Cloud Project | ❌ Not needed |
| Enable individual APIs | ❌ Not needed |
| Create OAuth credentials | ❌ Not needed |
| Download client_secret.json | ❌ Not needed |
| Configure redirect URIs | ❌ Not needed |
| Just sign in with Google | ✅ That's it |
npm install -g @presto-ai/google-workspace-mcp
mcporter config add google-workspace --command "npx" --arg "-y" --arg "@presto-ai/google-workspace-mcp" --scope home
On first use, it opens a browser for Google OAuth. Credentials stored in ~/.config/google-workspace-mcp/
# Search emails
mcporter call --server google-workspace --tool "gmail.search" query="is:unread" maxResults=10
# Get email content
mcporter call --server google-workspace --tool "gmail.get" messageId="<id>"
# Send email
mcporter call --server google-workspace --tool "gmail.send" to="email@example.com" subject="Hi" body="Hello"
# Create draft
mcporter call --server google-workspace --tool "gmail.createDraft" to="email@example.com" subject="Hi" body="Hello"
# List calendars
mcporter call --server google-workspace --tool "calendar.list"
# List events
mcporter call --server google-workspace --tool "calendar.listEvents" calendarId="your@email.com" timeMin="2026-01-27T00:00:00Z" timeMax="2026-01-27T23:59:59Z"
# Create event
mcporter call --server google-workspace --tool "calendar.createEvent" calendarId="your@email.com" summary="Meeting" start='{"dateTime":"2026-01-28T10:00:00Z"}' end='{"dateTime":"2026-01-28T11:00:00Z"}'
# Find free time
mcporter call --server google-workspace --tool "calendar.findFreeTime" attendees='["a@example.com","b@example.com"]' timeMin="2026-01-28T09:00:00Z" timeMax="2026-01-28T18:00:00Z" duration=30
# Search files
mcporter call --server google-workspace --tool "drive.search" query="Budget Q3"
# Download file
mcporter call --server google-workspace --tool "drive.downloadFile" fileId="<id>" localPath="/tmp/file.pdf"
# Find docs
mcporter call --server google-workspace --tool "docs.find" query="meeting notes"
# Read doc
mcporter call --server google-workspace --tool "docs.getText" documentId="<id>"
# Create doc
mcporter call --server google-workspace --tool "docs.create" title="New Doc" markdown="# Hello"
# Read spreadsheet
mcporter call --server google-workspace --tool "sheets.getText" spreadsheetId="<id>"
# Get range
mcporter call --server google-workspace --tool "sheets.getRange" spreadsheetId="<id>" range="Sheet1!A1:B10"
Auth: auth.clear, auth.refreshToken
Docs: docs.create, docs.find, docs.getText, docs.insertText, docs.appendText, docs.replaceText, docs.move, docs.extractIdFromUrl
Drive: drive.search, drive.downloadFile, drive.findFolder
Sheets: sheets.getText, sheets.getRange, sheets.find, sheets.getMetadata
Slides: slides.getText, slides.find, slides.getMetadata
Calendar: calendar.list, calendar.listEvents, calendar.getEvent, calendar.createEvent, calendar.updateEvent, calendar.deleteEvent, calendar.findFreeTime, calendar.respondToEvent
Gmail: gmail.search, gmail.get, gmail.send, gmail.createDraft, gmail.sendDraft, gmail.modify, gmail.listLabels, gmail.downloadAttachment
Chat: chat.listSpaces, chat.findSpaceByName, chat.sendMessage, chat.getMessages, chat.sendDm, chat.findDmByEmail, chat.listThreads, chat.setUpSpace
People: people.getUserProfile, people.getMe
Time: time.getCurrentDate, time.getCurrentTime, time.getTimeZone
mcporter call --server google-workspace --tool "auth.clear"
Then run any command to trigger re-auth.
mcporter call --server google-workspace --tool "auth.refreshToken"
rm -rf ~/.config/google-workspace-mcp
Generated Mar 1, 2026
A virtual assistant that automatically schedules meetings by checking calendar availability, finding free time slots for multiple attendees, and sending calendar invites. It eliminates the back-and-forth emails typically required for scheduling.
A marketing tool that searches for specific email threads, creates email drafts, sends bulk personalized emails, and tracks responses. Useful for sales outreach, customer follow-ups, and newsletter distribution.
A system that automatically creates Google Docs from templates, inserts dynamic content, searches for existing documents, and organizes files in Drive. Ideal for teams creating standardized reports or proposals.
A solution that extracts data from Google Sheets, processes it, and generates summary reports in Docs or sends email updates. Useful for financial reporting, project tracking, and performance dashboards.
A bot that monitors Google Chat spaces, sends automated messages, manages threads, and coordinates with calendar events. Helps streamline team communication and meeting follow-ups.
Offer the Google Workspace automation as a cloud-based service with tiered pricing based on usage volume and features. Include premium support, advanced analytics, and custom integration options for enterprise clients.
Provide professional services to customize and implement the Google Workspace automation for specific business workflows. Offer training, ongoing maintenance, and workflow optimization services alongside the core tool.
License the technology to other software companies or agencies who can rebrand it as part of their own productivity suites. Provide API access and customization options for seamless integration into existing platforms.
💬 Integration Tip
Start with a single use case like email automation or calendar management before expanding to full workflow integration. Use the zero-setup OAuth to quickly demonstrate value to stakeholders.
Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
Query Google Places API (New) via the goplaces CLI for text search, place details, resolve, and reviews. Use for human-friendly place lookup or JSON output for scripts.
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Google Drive API integration with managed OAuth. List, search, create, and manage files and folders. Use this skill when users want to interact with Google D...
Google Sheets API integration with managed OAuth. Read and write spreadsheet data, create sheets, apply formatting, and manage ranges. Use this skill when users want to read from or write to Google Sheets. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).
Google Slides API integration with managed OAuth. Create presentations, add slides, insert content, and manage slide formatting. Use this skill when users want to interact with Google Slides. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).