Comprehensive Google Workspace MCP server with Gmail, Drive, Calendar, and Contacts integration
Gsuite MCP server exists for a simple reason — assistants are far more useful when they can act on Gsuite directly instead of describing what you should do. Comprehensive Google Workspace MCP server with Gmail, Drive, Calendar, and Contacts integration.
Once Gsuite is connected, these are the calls the assistant has available:
google-gmail_list_messages — List messages in user's mailbox with optional filteringgoogle-gmail_get_message — Get a specific message by IDgoogle-gmail_send_message — Send an email message. Requires message in RFC 2822 format encoded as base64url stringgoogle-gmail_create_draft — Create a new draft message. IMPORTANT: Message must be an object with 'raw' field containing base64url-encoded RFC 2822 formatted messagegoogle-gmail_delete_message — PERMANENTLY delete a message - IMMEDIATE and IRREVERSIBLE. WARNING: Use trash_message instead for normal email deletion. Only use this for sensitivegoogle-gmail_modify_message — Modify labels on a message (add/remove labels, mark read/unread)google-gmail_search_messages — search_messages endpoint for google-gmailgoogle-drive_list_files — List files in Google Drive with optional search query and filteringgoogle-drive_get_file — Get file metadata by IDgoogle-drive_update_file — Update file metadatagoogle-drive_delete_file — Permanently delete a file. Returns 204 No Content with empty body on successgoogle-drive_search_files — Advanced file search with complex query syntax@west10tech/gsuite-mcp on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.
You will need 4 environment variables: GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET, GOOGLE_OAUTH_CREDENTIALS, GOOGLE_REDIRECT_URI. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Plenty of team communication servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Gsuite's toolset — google-gmail_list_messages, google-gmail_get_message, google-gmail_send_message and 11 more — is a fair guide to whether it matches your workflow. It is maintained by GitHub Actions; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| google-gmail_list_messages | List messages in user's mailbox with optional filtering |
| google-gmail_get_message | Get a specific message by ID |
| google-gmail_send_message | Send an email message. Requires message in RFC 2822 format encoded as base64url string |
| google-gmail_create_draft | Create a new draft message. IMPORTANT: Message must be an object with 'raw' field containing base64url-encoded RFC 2822 formatted message. |
| google-gmail_delete_message | PERMANENTLY delete a message - IMMEDIATE and IRREVERSIBLE. WARNING: Use trash_message instead for normal email deletion. Only use this for sensitive data that must be immediately destroyed. Bypasses trash completely. REQ |
| google-gmail_modify_message | Modify labels on a message (add/remove labels, mark read/unread) |
| google-gmail_search_messages | search_messages endpoint for google-gmail |
| google-drive_list_files | List files in Google Drive with optional search query and filtering |
| google-drive_get_file | Get file metadata by ID |
| google-drive_update_file | Update file metadata |
| google-drive_delete_file | Permanently delete a file. Returns 204 No Content with empty body on success. |
| google-drive_search_files | Advanced file search with complex query syntax |
| google-drive_create_file | create_file endpoint for google-drive |
| google-drive_share_file | share_file endpoint for google-drive |
{
"mcpServers": {
"gsuite": {
"command": "npx",
"args": ["@west10tech/gsuite-mcp"],
"env": {
"GOOGLE_CLIENT_ID": "your_google_client_id_here",
"GOOGLE_CLIENT_SECRET": "your_google_client_secret_here",
"GOOGLE_OAUTH_CREDENTIALS": "your_google_oauth_credentials_here",
"GOOGLE_REDIRECT_URI": "your_google_redirect_uri_here"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| GOOGLE_CLIENT_ID | Configuration value read at startup. | Optional |
| GOOGLE_CLIENT_SECRET | Credential the server authenticates with. | Yes |
| GOOGLE_OAUTH_CREDENTIALS | Configuration value read at startup. | Optional |
| GOOGLE_REDIRECT_URI | Filesystem location the server is allowed to use. | Optional |
Your assistant inside the workspace — read channels, search history, post messages and tame the noise.
Inbox intelligence — search, read, draft and send Gmail through your assistant with OAuth auto-setup.
Read and write Jira, Confluence, Bitbucket, JSM and Compass from your AI client — with your own permissions.
Read and send Telegram messages through your assistant — chats, channels and history via the client API.
Enables Discord bot integration with Model Context Protocol (MCP) compatible applications like Claude Desktop.
Exposes REST APIs defined by OpenAPI specifications as Model Context Protocol (MCP) tools, facilitating seamless integration into MCP-based workflows.