google-workspace-mcp
Allows listing calendars, searching and listing events, and creating, updating, and deleting calendar events.
Allows reading, creating, editing, and managing Google Docs documents, including appending text, find-and-replace, and trash operations.
Allows listing, searching, retrieving metadata, creating folders, moving files, and deleting files in Google Drive.
Allows reading, creating, updating, appending rows, clearing ranges, and managing Google Sheets spreadsheets.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@google-workspace-mcpList my Google Drive files"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Google Workspace MCP Server
A TypeScript MCP (Model Context Protocol) server that gives Claude read/write access to Google Docs, Sheets, Drive, and Calendar. Works with Claude Code and Claude Desktop.
24 tools across four services — create, edit, search, and manage your Google Workspace files and events directly from Claude.
Features
Google Docs
docs_get— Read full document contentdocs_create— Create a new documentdocs_append— Append text to a documentdocs_replace— Find and replace textdocs_delete— Move a document to trash
Google Sheets
sheets_get— Read cell values from a rangesheets_create— Create a new spreadsheetsheets_update— Write values to a rangesheets_append— Append rows to a sheetsheets_clear— Clear a rangesheets_delete— Move a spreadsheet to trash
Google Drive
drive_list— List files and foldersdrive_search— Search files by namedrive_get— Get file metadatadrive_create_folder— Create a folderdrive_move— Move a file to a different folderdrive_delete— Move a file to trash
Google Calendar
calendar_list— List all calendarscalendar_events— List upcoming eventscalendar_search— Search events by textcalendar_get— Get full event detailscalendar_create— Create a new eventcalendar_update— Update an existing eventcalendar_delete— Delete an event
Related MCP server: Company MCP Server - Google Workspace Integration
Prerequisites
Node.js 18 or higher
A Google Cloud project with OAuth 2.0 credentials
Setup
1. Google Cloud Console
Go to console.cloud.google.com
Create a new project (or select an existing one)
Navigate to APIs & Services → Credentials
Click Create Credentials → OAuth Client ID
Choose Desktop Application as the application type
Download or note the Client ID and Client Secret
Enable the following APIs for your project:
2. Install and Build
git clone https://github.com/laltaffer/google-workspace-mcp.git
cd google-workspace-mcp
npm install
npm run build3. Register the server
Claude Code — one command, user scope so it loads in every project:
claude mcp add google-workspace --scope user \
-e GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com \
-e GOOGLE_CLIENT_SECRET=your-client-secret \
-- node /absolute/path/to/google-workspace-mcp/dist/index.jsClaude Desktop — add the following to your config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"google-workspace": {
"command": "node",
"args": ["/absolute/path/to/google-workspace-mcp/dist/index.js"],
"env": {
"GOOGLE_CLIENT_ID": "your-client-id.apps.googleusercontent.com",
"GOOGLE_CLIENT_SECRET": "your-client-secret"
}
}
}
}Replace /absolute/path/to/google-workspace-mcp with the actual path where you cloned the repo.
4. Restart the client
Claude Code picks the server up in new sessions. For Claude Desktop, fully quit and reopen it.
5. Authorize
In a new Claude chat, say:
"Call the authorize tool"
Claude will return a Google authorization URL. Open it in your browser, sign in, and grant access. Your browser will show "Authorization complete!" — you only need to do this once. Tokens are saved to ~/.google-workspace-mcp/tokens.json.
You can now use all Google Workspace tools in Claude.
Upgrading? If you previously authorized without Calendar support, delete
~/.google-workspace-mcp/tokens.jsonand re-authorize to grant calendar permissions.
Usage Examples
"List my Google Drive files"
"Create a new Google Doc called 'Meeting Notes' and add an agenda"
"Read the spreadsheet with ID 1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgVE2upms and summarize it"
"Find all documents with 'Q1' in the name"
"Append a new row to my budget spreadsheet: ['March', '4500', 'Rent']"
"What's on my calendar this week?"
"Create a meeting called 'Design Review' tomorrow at 2pm for 1 hour"
Development
npm test # run tests
npm run test:watch # watch mode
npm run build # compile TypeScriptThe project uses vitest for testing with mocked googleapis clients. 29 tests across auth, Drive, Docs, Sheets, and Calendar modules.
Token Storage
OAuth tokens are stored locally at ~/.google-workspace-mcp/tokens.json. They are never committed to this repository. To revoke access, delete that file or revoke the app in your Google Account security settings.
Tech Stack
License
MIT.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceConnects Claude Desktop to Google Docs and Google Drive, enabling comprehensive document reading, writing, formatting, structuring, and complete Drive file management including shared drives support through OAuth 2.0 authentication.92MIT
- AlicenseNot gradedqualityNot gradedmaintenanceEnables Claude to interact with Google Workspace services including Gmail, Drive, Sheets, Docs, and Calendar. Provides comprehensive tools for reading, creating, and managing emails, files, spreadsheets, documents, and calendar events with built-in safety controls and audit logging.
- FlicenseNot gradedqualityDmaintenanceEnables Claude to perform comprehensive read and write operations on Google Docs, Sheets, and Drive folders. It supports file management, content searching, and provides resource access via custom URI schemes for seamless project context integration.
- AlicenseNot gradedqualityDmaintenanceEnables Claude to manage Gmail, Google Calendar, and Google Drive, including sending emails, scheduling meetings, and organizing files, with integrated workflows.5MIT
Related MCP Connectors
233 tools for Google, Microsoft, TikTok, LinkedIn Ads in Claude or ChatGPT. Writes need approval.
Schedule and manage Google Calendar events directly from your workspace. Check availability, view…
Connect your team's living knowledge base — docs, data, issues, CRM — to Claude and ChatGPT.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/laltaffer/google-workspace-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server