MCP Server to connect to Google G-Suite
Project description
mcp-gsuite-rb MCP server
MCP server to interact with Google products. This is a fork of the original mcp-gsuite package with additional features.
Example prompts
Right now, this MCP server supports Gmail and Calendar integration with the following capabilities:
- General
- Multiple google accounts
- Gmail
- Get your Gmail user information
- Query emails with flexible search (e.g., unread, from specific senders, date ranges, with attachments)
- Retrieve complete email content by ID
- Create new draft emails with recipients, subject, body and CC options
- Delete draft emails
- Reply to existing emails (can either send immediately or save as draft)
- Retrieve multiple emails at once by their IDs.
- Save multiple attachments from emails to your local system.
- Calendar
- Manage multiple calendars
- Get calendar events within specified time ranges
- Create calendar events with:
- Title, start/end times
- Optional location and description
- Optional attendees
- Custom timezone support
- Notification preferences
- Delete calendar events
Example prompts you can try:
-
Retrieve my latest unread messages
-
Search my emails from the Scrum Master
-
Retrieve all emails from accounting
-
Take the email about ABC and summarize it
-
Write a nice response to Alice's last email and upload a draft.
-
Reply to Bob's email with a Thank you note. Store it as draft
-
What do I have on my agenda tomorrow?
-
Check my private account's Family agenda for next week
-
I need to plan an event with Tim for 2hrs next week. Suggest some time slots.
Quickstart
Install
You can install this package directly from PyPI:
pip install mcp-gsuite-rb
Or with uv:
uv add mcp-gsuite-rb
Installing via Smithery
To install mcp-gsuite for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install mcp-gsuite-rb --client claude
Oauth 2
Google Workspace (G Suite) APIs require OAuth2 authorization. Follow these steps to set up authentication:
-
Create OAuth2 Credentials:
- Go to the Google Cloud Console
- Create a new project or select an existing one
- Enable the Gmail API and Google Calendar API for your project
- Go to "Credentials" → "Create Credentials" → "OAuth client ID"
- Select "Desktop app" or "Web application" as the application type
- Configure the OAuth consent screen with required information
- Add authorized redirect URIs (include
http://localhost:4100/codefor local development)
-
Required OAuth2 Scopes:
[
"openid",
"https://mail.google.com/",
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/userinfo.email"
]
- Then create a
.gauth.jsonin your working directory with client
{
"web": {
"client_id": "$your_client_id",
"client_secret": "$your_client_secret",
"redirect_uris": ["http://localhost:4100/code"],
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token"
}
}
- Create a
.accounts.jsonfile with account information
{
"accounts": [
{
"email": "alice@bob.com",
"account_type": "personal",
"extra_info": "Additional info that you want to tell Claude: E.g. 'Contains Family Calendar'"
}
]
}
You can specifiy multiple accounts. Make sure they have access in your Google
Auth app. The extra_info field is especially interesting as you can add info
here that you want to tell the AI about the account (e.g. whether it has a
specific agenda)
Note: When you first execute one of the tools for a specific account, a browser
will open, redirect you to Google and ask for your credentials, scope, etc.
After a successful login, it stores the credentials in a local file called
.oauth.{email}.json . Once you are authorized, the refresh token will be used.
Claude Desktop
On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
Development/Unpublished Servers Configuration
{
"mcpServers": {
"mcp-gsuite-rb": {
"command": "uv",
"args": ["--directory", "<dir_to>/mcp-gsuite-rb", "run", "mcp-gsuite-rb"]
}
}
}
Note: You can also use the
uv run mcp-gsuite-rb --accounts-file /path/to/custom/.accounts.json to specify a
different accounts file or --credentials-dir /path/to/custom/credentials to
specify a different credentials directory.
{
"mcpServers": {
"mcp-gsuite-rb": {
"command": "uv",
"args": [
"--directory",
"<dir_to>/mcp-gsuite-rb",
"run",
"mcp-gsuite-rb",
"--accounts-file",
"/path/to/custom/.accounts.json",
"--credentials-dir",
"/path/to/custom/credentials"
]
}
}
}
Published Servers Configuration
{
"mcpServers": {
"mcp-gsuite-rb": {
"command": "uvx",
"args": [
"mcp-gsuite-rb",
"--accounts-file",
"/path/to/custom/.accounts.json",
"--credentials-dir",
"/path/to/custom/credentials"
]
}
}
}
Configuration Options
The MCP server can be configured with several command-line options to specify custom paths for authentication and account information:
--gauth-file: Specifies the path to the.gauth.jsonfile containing OAuth2 client configuration. Default is./.gauth.json.--accounts-file: Specifies the path to the.accounts.jsonfile containing information about the Google accounts. Default is./.accounts.json.--credentials-dir: Specifies the directory where OAuth credentials are stored after successful authentication. Default is the current working directory with a subdirectory for each account as.oauth.{email}.json.
Environment Variable Configuration
Alternatively, you can provide configuration directly via environment variables instead of files:
GSUITE_OAUTH_CONFIG: JSON string containing the OAuth2 client configuration (same structure as.gauth.json)GSUITE_ACCOUNTS_CONFIG: JSON array of account configurations (same structure as the "accounts" array in.accounts.json)GSUITE_USE_MEMORY_STORAGE: When set to "true", credentials will be stored in memory rather than on disk
Example using environment variables in your Claude Desktop configuration:
{
"mcpServers": {
"mcp-gsuite-rb": {
"command": "uvx",
"args": ["mcp-gsuite-rb"],
"env": {
"GSUITE_OAUTH_CONFIG": "{\"web\":{\"client_id\":\"your-client-id\",\"project_id\":\"your-project\",\"auth_uri\":\"https://accounts.google.com/o/oauth2/auth\",\"token_uri\":\"https://oauth2.googleapis.com/token\",\"auth_provider_x509_cert_url\":\"https://www.googleapis.com/oauth2/v1/certs\",\"client_secret\":\"your-client-secret\",\"redirect_uris\":[\"http://localhost:4100/code\"],\"javascript_origins\":[\"http://localhost:3050\"]}}",
"GSUITE_ACCOUNTS_CONFIG": "[{\"email\":\"your-email@example.com\",\"account_type\":\"work\",\"extra_info\":\"Your account description\"}]",
"GSUITE_USE_MEMORY_STORAGE": "true"
}
}
}
}
These options allow for flexibility in managing different environments or multiple sets of credentials and accounts, especially useful in development and testing scenarios.
Development
Building and Publishing
To prepare the package for distribution:
- Sync dependencies and update lockfile:
uv sync
- Build package distributions:
uv build
This will create source and wheel distributions in the dist/ directory.
- Publish to PyPI:
uv publish
Note: You'll need to set PyPI credentials via environment variables or command flags:
- Token:
--tokenorUV_PUBLISH_TOKEN - Or username/password:
--username/UV_PUBLISH_USERNAMEand--password/UV_PUBLISH_PASSWORD
Debugging
Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the MCP Inspector.
Using MCP Inspector with File-Based Configuration
You can launch the MCP Inspector via
npm
with this command:
npx @modelcontextprotocol/inspector uv --directory /path/to/mcp-gsuite-rb run mcp-gsuite-rb
Using MCP Inspector with Environment Variables
If you're using environment variables instead of configuration files, you can
pass them to the Inspector using the -e flag:
npx @modelcontextprotocol/inspector -e GSUITE_OAUTH_CONFIG='{...}' -e GSUITE_ACCOUNTS_CONFIG='[...]' -e GSUITE_USE_MEMORY_STORAGE=true uv --directory /path/to/mcp-gsuite-rb run mcp-gsuite-rb
For example, with the configuration from the examples above:
npx @modelcontextprotocol/inspector -e GSUITE_OAUTH_CONFIG='{"web":{"client_id":"your-client-id","project_id":"your-project","auth_uri":"https://accounts.google.com/o/oauth2/auth","token_uri":"https://oauth2.googleapis.com/token","auth_provider_x509_cert_url":"https://www.googleapis.com/oauth2/v1/certs","client_secret":"your-client-secret","redirect_uris":["http://localhost:4100/code"],"javascript_origins":["http://localhost:3050"]}}' -e GSUITE_ACCOUNTS_CONFIG='[{"email":"your-email@example.com","account_type":"work","extra_info":"Your account description"}]' -e GSUITE_USE_MEMORY_STORAGE=true uv --directory /path/to/mcp-gsuite-rb run mcp-gsuite-rb
If needed, you can use the -- separator to distinguish inspector flags from
server arguments:
npx @modelcontextprotocol/inspector -e GSUITE_OAUTH_CONFIG='{...}' -e GSUITE_ACCOUNTS_CONFIG='[...]' -- uv --directory /path/to/mcp-gsuite-rb run mcp-gsuite-rb
Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
You can also watch the server logs with this command:
tail -n 20 -f ~/Library/Logs/Claude/mcp-server-mcp-gsuite-rb.log
Project details
Release history Release notifications | RSS feed
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 mcp_gsuite_rb-0.1.1.tar.gz.
File metadata
- Download URL: mcp_gsuite_rb-0.1.1.tar.gz
- Upload date:
- Size: 60.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf3e38cec9058a824d56dd191fd9472af306bc822938a0c511f6865d577fa902
|
|
| MD5 |
7794d44e0f8b07cac399fefd3516257b
|
|
| BLAKE2b-256 |
c9fc9e0dd0a47629d141d771f94cd634d356e99c0e54bd790bed71540a609709
|
File details
Details for the file mcp_gsuite_rb-0.1.1-py3-none-any.whl.
File metadata
- Download URL: mcp_gsuite_rb-0.1.1-py3-none-any.whl
- Upload date:
- Size: 23.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c884d4d17d93c7264e18cda030181cf25b99f1f7559ba8e6ec85120bad50e638
|
|
| MD5 |
bd3ccccea037c9ba07aab79984bb627d
|
|
| BLAKE2b-256 |
84ee2aec9c4073d43bac92422b128d8b318b25ac43ea9ce445d1b40935c0ea58
|