Google Workspace MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| GOOGLE_CLIENT_ID | Yes | Your Google OAuth client ID from the Google Cloud Console | |
| GOOGLE_CLIENT_SECRET | Yes | Your Google OAuth client secret from the Google Cloud Console | |
| GOOGLE_REFRESH_TOKEN | Yes | OAuth refresh token obtained through the get-refresh-token.js script |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_emailsB | List recent emails from Gmail inbox |
| search_emailsC | Search emails with advanced query |
| send_emailC | Send a new email |
| modify_emailA | Modify email labels (archive, trash, mark read/unread) |
| list_eventsC | List upcoming calendar events |
| create_eventC | Create a new calendar event |
| update_eventB | Update an existing calendar event |
| delete_eventB | Delete a calendar event |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Tools are clearly separated into two domains: calendar (create/delete/list/update events) and email (list/search/send/modify labels). No overlapping purposes, making it easy for an agent to select the correct tool.
All tool names follow an excellent verb_noun pattern (e.g., create_event, list_emails). There is no mixing of conventions or inconsistent verb styles.
With 8 tools, the set is well-scoped for covering two major Google Workspace services. Neither too few nor too many, each tool serves a distinct purpose.
Calendar operations are complete (CRUD). Email operations cover list, search, send, and label modification, but are missing permanent deletion and the ability to fetch detailed content of a single email. Still, core workflows are well-covered.