Google Workspace MCP Server
Provides tools for reading and managing Google Calendar events, including listing calendars, viewing schedules, finding free slots, creating, moving, modifying, and deleting events with safety constraints.
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 MCP ServerWhat's on my calendar today?"
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 hardened, safety-first Google Calendar Model Context Protocol (MCP) server designed for enterprise reliability, strict data isolation, and deep agentic workflow integrations. This server empowers AI agents (like Claude Desktop, Cursor, or Antigravity) to read and manage calendars while enforcing strict user-defined security limits at runtime.
โจ Core Features & Safety Constraints
To protect user accounts and prevent unauthorized modifications, the server implements multiple runtime safeguards:
๐ Domain Boundary Whitelist: Blocks agents from sending calendar invites to external or unauthorized email domains (via
GWS_ALLOWED_DOMAINS).๐ก๏ธ PII & Description Scrubber: Redacts email addresses, phone numbers, and meeting details dynamically based on privacy levels (
GWS_PII_MODE).๐ฅ Double-Booking Prevention: Checks calendar availability automatically before booking an event unless the client explicitly requests an override (
ignore_availability=True).โ ๏ธ Two-Turn Delete Flow: Forces a dry-run confirmation step for event deletions, returning a detailed preview card before executing changes.
๐ Profile-Based Token Storage: Isolates authentication tokens based on
GWS_PROFILEto allow multi-tenant/account setups (e.g., separating personal and corporate accounts).โฑ๏ธ API Rate Limiter: Enforces a global minimum interval of 100ms between calls to avoid flooding Google Cloud API quotas.
๐ Structured Audit Logging: Appends timestamped, owner-only readable (
chmod 600) JSON log lines for all modifying actions.
Related MCP server: calendar-mcp
๐ Quick Start & Installation
1. Run the Interactive Installer (Recommended)
We provide an interactive installer script that handles virtual environments, fetches dependencies, guides you through placing your Google credentials, runs the auth flow, and auto-injects configuration settings into Claude Desktop:
# Clone the repository and kick off the configuration engine
curl -fsSL https://raw.githubusercontent.com/wrik0/gws-workspace-agent/master/setup.sh | bashAlternatively, if you already cloned the repository locally:
./setup.shYou can also configure a custom profile (e.g., work) during setup:
./setup.sh --profile work2. Manual Installation
If you prefer to configure the environment manually:
# Clone the repository
git clone https://github.com/wrik0/gws-workspace-agent.git
cd gws-workspace-agent
# Set up environment and install package in editable mode
uv venv
uv pip install -e ".[dev]"3. Google OAuth Setup
Before running the server, place your Google Cloud Client Secrets file (credentials.json) in the standard application data folder:
Linux:
~/.config/google-workspace-mcp/credentials.jsonmacOS:
~/Library/Application Support/google-workspace-mcp/credentials.jsonWindows:
%APPDATA%\gws\google-workspace-mcp\credentials.json
Next, run the CLI authorization utility:
# Performs browser login and caches the OAuth token
# On Unix (using the symlinked binary):
gws-auth
# Or directly via virtual environment:
.venv/bin/gws-authโ๏ธ Environment Configuration
You can configure the server behaviour using environment variables or equivalent command-line options when serving:
Environment Variable | CLI Option | Default | Description |
|
|
| Workspace profile name. Resolves to |
|
|
| Mode of operation: |
|
|
| Privacy filter: |
|
| None | Comma-separated domain whitelist for invitees (e.g. |
| None | System Local | Local timezone database name (e.g. |
| None |
| Destination path for the append-only JSON audit logs. |
๐ Command Line Interface (CLI)
The package exposes three entry points:
gws-serve
Starts the stdio FastMCP server.
gws-serve --mode readonly --pii-mode redact --allowed-domains company.comgws-auth
Starts the OAuth token refresh browser loop.
# Request only read-only scopes from Google
gws-auth --mode readonly
# Request write scopes (requires verification if app is in sandbox)
gws-auth --mode fullgws-purge
Purges cached tokens and credentials files.
# Deletes cached token file but leaves credentials.json intact
gws-purge --token-only
# Deletes the entire application config directory
gws-purge --all๐ Client Integration
Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"google-workspace": {
"command": "~/.local/bin/gws-serve",
"args": ["--readonly", "--pii-mode", "redact"],
"env": {
"GWS_ALLOWED_DOMAINS": "mycompany.com"
}
}
}
}Cursor IDE
Navigate to Cursor Settings > Features > MCP > + Add New MCP Server:
Name:
google-workspaceType:
commandCommand:
~/.local/bin/gws-serve --readonly --pii-mode redact
๐ฆ MCP Tools Reference
Read Tools (Available in readonly and full modes)
list_calendars(): Lists all calendars in the account with their name, ID, and access roles (e.g. owner, reader).view_schedule(time_min, time_max, calendar_id="primary"): Displays events in a specific window. Outputs summary, times, descriptions, and color emojis (derived from Google Color IDs).find_slots(time_min, time_max, duration_minutes, calendar_id="primary"): Queries free/busy state and aggregates open slots available for scheduling.
Write Tools (Available only in full mode)
create_event(summary, start_iso, end_iso, ...): Creates a calendar event. Validates invitee domains, checks double-booking conflicts, and records the action inaudit.log.move_event(event_id, new_start_iso, new_end_iso): Shift events in time via a singlePATCHAPI request.modify_event(event_id, ...): Dynamically updates text details or appends new whitelisted attendees.delete_event(event_id, confirm=False): Two-turn deletion flow. Run withconfirm=Falseto inspect the event details card, and run withconfirm=Trueto execute the API call.
๐งช Developer & Testing Suite
We use pytest for unit testing. The test suite uses mocks to fully simulate Google Cloud services and config directories:
# Run pytest locally
.venv/bin/pytest -vStyle & Format Enforcement
To maintain code quality, run Ruff checkers:
# Format codebase
.venv/bin/ruff format
# Run linter checks
.venv/bin/ruff check --fix๐ License
This project is licensed under the terms of the MIT license.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/wrik0/gws-workspace-agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server