MCP GSuite is a Model Context Protocol server that enables Claude to interact with Google Workspace (formerly G Suite) products. It provides seamless integration with Gmail and Google Calendar, allowing Claude to search emails, create drafts, manage calendar events, and more across multiple Google accounts.
MCP GSuite enables Claude to interact with Google Workspace services, providing a powerful interface to Gmail and Google Calendar. This integration allows you to manage your emails and calendar events through natural language conversations with Claude.
The easiest way to install MCP GSuite is through Smithery:
npx -y @smithery/cli install mcp-gsuite --client claude
Install the package using pip
or uv
:
pip install mcp-gsuite
# or
uv pip install mcp-gsuite
Configure Claude Desktop to use the MCP server (see Configuration section below)
http://localhost:4100/code
for local development)Create a .gauth.json
file in your working directory:
{
"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.json
file with your account information:
{
"accounts": [
{
"email": "your.email@gmail.com",
"account_type": "personal",
"extra_info": "Contains Family Calendar and Work emails"
},
{
"email": "your.work@company.com",
"account_type": "work",
"extra_info": "Work account with meeting schedules"
}
]
}
Edit your Claude Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%/Claude/claude_desktop_config.json
Add the following configuration:
{
"mcpServers": {
"mcp-gsuite": {
"command": "uvx",
"args": [
"mcp-gsuite"
]
}
}
}
For custom configuration paths:
{
"mcpServers": {
"mcp-gsuite": {
"command": "uvx",
"args": [
"mcp-gsuite",
"--accounts-file",
"/path/to/custom/.accounts.json",
"--credentials-dir",
"/path/to/custom/credentials"
]
}
}
}
When you first use a tool for a specific account, a browser window will open requesting Google authentication. After successful login, the credentials will be stored locally in a file named .oauth.{email}.json
. For subsequent uses, the refresh token will be used automatically.
Try these prompts with Claude to test the integration:
The MCP server supports several command-line options:
--gauth-file
: Path to the .gauth.json
file (default: ./.gauth.json
)--accounts-file
: Path to the .accounts.json
file (default: ./.accounts.json
)--credentials-dir
: Directory for storing OAuth credentials (default: current working directory)Example:
uvx mcp-gsuite --gauth-file /path/to/.gauth.json --accounts-file /path/to/.accounts.json --credentials-dir /path/to/credentials
The following OAuth scopes are required for full functionality:
[
"openid",
"https://mail.google.com/",
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/userinfo.email"
]
If problems persist, try removing the .oauth.{email}.json
file and re-authenticating.