Google Workspace MCP Server with guided setup and seamless auth. 114 tools for Gmail, Drive, Docs, Sheets, Calendar & more.
Project description
gwmcp
Google Workspace MCP Server with guided setup and seamless auth.
One command to install, authenticate, and start using 114 Google Workspace tools with Claude Code, Cursor, or any MCP client.
Derived from taylorwilsdon/google_workspace_mcp (MIT). This project adds a guided setup wizard, simplified configuration, and improved auth flow for local single-user setups.
Table of Contents
- Quick Start
- Step-by-Step Google Cloud Setup
- What You Get
- Configuration
- CLI Options
- How It Improves on the Original
- Development
- License
Quick Start
If you already have a client_secret.json from Google Cloud, you can skip ahead:
uvx gwmcp setup --email you@gmail.com --client-secret /path/to/client_secret.json
If you don't have one yet, follow the step-by-step guide below.
Step-by-Step Google Cloud Setup
This section walks you through everything from scratch. No prior Google Cloud experience needed.
1. Install Prerequisites
You need Python 3.10+ and uv (a fast Python package manager).
Windows (PowerShell):
# Install uv
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
macOS/Linux:
# Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
After installing, restart your terminal so the uvx command is available.
2. Create a Google Cloud Project
- Go to Google Cloud Console
- Sign in with your Google account
- Click the project dropdown at the top of the page (it might say "Select a project")
- Click New Project
- Give it a name (e.g. "My Workspace MCP") and click Create
- Make sure your new project is selected in the dropdown
3. Enable Google APIs
You need to turn on the APIs for the Google services you want to use.
- In the Google Cloud Console, go to APIs & Services > Library (or click here)
- Search for and enable each API you need by clicking on it and hitting Enable:
| API | What it unlocks |
|---|---|
| Google Drive API | Search, upload, download, share files |
| Google Docs API | Create, read, edit documents |
| Google Sheets API | Read, write, format spreadsheets |
| Gmail API | Search, read, send, draft emails |
| Google Calendar API | Events, availability, calendars |
| Google Slides API | Create, edit presentations |
| Google Forms API | Create forms, read responses |
| Tasks API | Manage task lists and tasks |
| People API | Manage contacts |
| Google Chat API | Spaces and messages |
| Apps Script API | Manage script projects |
You can enable just the ones you need now and add more later.
4. Set Up the OAuth Consent Screen
This tells Google what your app is and who can use it.
- Go to APIs & Services > OAuth consent screen (or click here)
- Select Get started or External as the user type, then click Create
- Fill in the required fields:
- App name: anything (e.g. "gwmcp")
- User support email: your email
- Developer contact email: your email
- Click Save and Continue through the Scopes and Summary steps (defaults are fine)
- On the Test users page or under Audience, click Add Users
- Add your own Gmail address (e.g.
you@gmail.com) and click Save
Important: While the app is in "Testing" mode, only the email addresses you add as test users can authenticate. This is fine for personal use.
5. Create OAuth Credentials
This generates the client_secret.json file you need.
- Go to APIs & Services > Credentials (or click here)
- Click Create Credentials at the top
- Choose OAuth client ID
- For Application type, select Desktop app
- Give it a name (e.g. "gwmcp") and click Create
- A dialog will appear with your client ID and secret — click Download JSON
- Save the downloaded file somewhere you can find it (e.g. your Downloads folder)
The file will have a long name like client_secret_284692452895-xxxxx.apps.googleusercontent.com.json. That's normal.
6. Run the Setup Wizard
Now you have everything you need. Run this in your terminal:
uvx gwmcp setup --email you@gmail.com --client-secret ~/Downloads/client_secret_*.json
Replace you@gmail.com with your actual Gmail address, and update the path to wherever you saved the JSON file.
The wizard will:
- Copy your credentials to a safe location (
~/.google_workspace_mcp/) - Open your browser for Google sign-in
- Save the authentication token
- Write the MCP config file for Claude Code
When the browser opens:
- Sign in with the same Google account you added as a test user
- You'll see a warning: "Google hasn't verified this app" — click Advanced, then Go to gwmcp (unsafe)
- Check the permissions and click Allow
- You'll see a success page — you can close the browser tab
7. Restart Claude Code
Close and reopen Claude Code. The Google Workspace tools will now be available. Try asking:
"Search my Google Drive for recent documents"
Or if you prefer the interactive setup (prompts you for each step):
uvx gwmcp setup
What You Get
114 tools across 12 Google Workspace services:
| Service | Examples |
|---|---|
| Gmail | Search, read, send, draft, label, filter |
| Drive | Search, upload, download, share, permissions |
| Docs | Create, read, edit, find & replace, export to PDF |
| Sheets | Read, write, format, conditional formatting |
| Calendar | Events, availability, multiple calendars |
| Slides | Create, read, edit presentations |
| Forms | Create, read responses |
| Tasks | Create, manage task lists |
| Contacts | Search, create, manage |
| Chat | Spaces, messages |
| Apps Script | Projects, deployments, versions |
| Search | Custom search engine |
Configuration
After gwmcp setup, your ~/.claude/mcp.json will look like:
{
"mcpServers": {
"google-workspace": {
"command": "uvx",
"args": ["gwmcp", "--single-user"],
"env": {
"GOOGLE_CLIENT_SECRET_PATH": "/path/to/.google_workspace_mcp/client_secret.json"
}
}
}
}
Only one environment variable needed. The email and OAuth credentials are auto-detected from stored tokens.
Environment Variables
| Variable | Required | Description |
|---|---|---|
GOOGLE_CLIENT_SECRET_PATH |
Yes | Path to your client_secret.json |
USER_GOOGLE_EMAIL |
No | Auto-detected from stored credentials |
GOOGLE_OAUTH_CLIENT_ID |
No | Auto-extracted from client_secret.json |
GOOGLE_OAUTH_CLIENT_SECRET |
No | Auto-extracted from client_secret.json |
CLI Options
gwmcp --single-user # Single-user mode (recommended)
gwmcp --tools gmail drive docs # Load specific services only
gwmcp --tool-tier core # Load core tools only
gwmcp --read-only # Read-only mode
gwmcp --permissions gmail:readonly drive:full # Granular permissions
gwmcp --cli search_drive_files --args '{"query": "test"}' # Direct CLI usage
How It Improves on the Original
| Pain point | Original | gwmcp |
|---|---|---|
| Env vars needed | 4 (trial and error) | 1 (GOOGLE_CLIENT_SECRET_PATH) |
| Email config | Manual USER_GOOGLE_EMAIL required |
Auto-detected from stored credentials |
| First-time auth | Print URL, no callback server, state mismatch | Setup wizard handles everything |
| CLI mode auth | Prints dead URL, exits | Opens browser, waits, retries automatically |
| Setup process | Read docs, edit JSON manually | uvx gwmcp setup |
| Tool responses | Verbose JSON with raw IDs | Clean, human-readable output |
Troubleshooting
"Google hasn't verified this app"
This appears because your app is in "Testing" mode. To get past it:
- Click Advanced, then Go to gwmcp (unsafe) to continue
- If you get blocked entirely, make sure your email is added as a test user:
- Go to Google Cloud Console > APIs & Services > OAuth consent screen
- Under Audience (or Test users), click Add Users
- Add the Gmail address you're trying to sign in with
- Save and try again
"Access blocked: This app's request is invalid"
Make sure the redirect URI matches. gwmcp uses http://localhost:8000/oauth2callback. You don't need to configure this in Google Cloud for Desktop app credentials — it's handled automatically.
"uvx: command not found"
You need to install uv first. See Install Prerequisites.
Port 8000 is in use
Another application is using port 8000. Stop it and try again, or set a custom port:
WORKSPACE_MCP_PORT=9000 uvx gwmcp setup --email you@gmail.com --client-secret /path/to/secret.json
Token expired or revoked
Re-run the setup wizard to re-authenticate:
uvx gwmcp setup
Development
git clone https://github.com/Gambinoo3005/gwmcp.git
cd gwmcp
pip install -e ".[dev]"
pytest
License
MIT License. See LICENSE.
Based on google_workspace_mcp by Taylor Wilsdon.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gwmcp-1.16.3.tar.gz.
File metadata
- Download URL: gwmcp-1.16.3.tar.gz
- Upload date:
- Size: 247.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05f997183d0d2377926b62c4d6f5c810e37b8d859e6a127a0e17d47d9834e440
|
|
| MD5 |
cd3f879a476d139609f83ea9abfecee3
|
|
| BLAKE2b-256 |
be5b9f7172c74ca470aaf3b0b1517b2eb07a520a11c0fa2f9e3dce01b6656691
|
File details
Details for the file gwmcp-1.16.3-py3-none-any.whl.
File metadata
- Download URL: gwmcp-1.16.3-py3-none-any.whl
- Upload date:
- Size: 266.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03982af68eb82e31ef1fc5d8aecb4a039291f7fca7a080d075f86178dfeb7d10
|
|
| MD5 |
612da36846a6d83beb4241f3f2b552dd
|
|
| BLAKE2b-256 |
c4644aad79ac55553d3a75fb9143e09a2ba6f17dfd98a16cafc3dba8f8419190
|