A Model Context Protocol (MCP) server that provides tools for interacting with Gmail and Calendar APIs. This server enables you to manage your emails and calendar events programmatically through the MCP interface.
Features
Gmail Tools
`list_emails`: List recent emails from your inbox with optional filtering
`search_emails`: Advanced email search with Gmail query syntax
`send_email`: Send new emails with support for CC and BCC
`modify_email`: Modify email labels (archive, trash, mark read/unread)
Calendar Tools
`list_events`: List upcoming calendar events with date range filtering
`create_event`: Create new calendar events with attendees
`update_event`: Update existing calendar events
`delete_event`: Delete calendar events
Prerequisites
**Node.js**: Install Node.js version 14 or higher
**Google Cloud Console Setup**:
- Go to [Google Cloud Console](https://console.cloud.google.com/)
- Create a new project or select an existing one
- Enable the Gmail API and Google Calendar API:
1. Go to "APIs & Services" > "Library"
2. Search for and enable "Gmail API"
3. Search for and enable "Google Calendar API"
- Set up OAuth 2.0 credentials:
1. Go to "APIs & Services" > "Credentials"
2. Click "Create Credentials" > "OAuth client ID"
3. Choose "Web application"
4. Set "Authorized redirect URIs" to include: `http://localhost:4100/code`
5. Note down the Client ID and Client Secret
Setup Instructions
Installing via Smithery
To install gsuite-mcp for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@rishipradeep-think41/gsuite-mcp):
Installing Manually
**Clone and Install**:
```bash
git clone https://github.com/epaproditus/google-workspace-mcp-server.git
cd google-workspace-mcp-server
npm install
```
**Create OAuth Credentials**:
Create a `credentials.json` file in the root directory:
```json
{
"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"
}
}
```
**Get Refresh Token**:
```bash
node get-refresh-token.js
```
This will:
- Open your browser for Google OAuth authentication
- Request the following permissions:
- `https://www.googleapis.com/auth/gmail.modify`
- `https://www.googleapis.com/auth/calendar`
- `https://www.googleapis.com/auth/gmail.send`
- Save the credentials to `token.json`
- Display the refresh token in the console
**Configure MCP Settings**:
Add the server configuration to your MCP settings file:
- For VSCode Claude extension: `~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
- For Claude desktop app: `~/Library/Application Support/Claude/claude_desktop_config.json`
Add this to the `mcpServers` object:
```json
{
"mcpServers": {
"google-workspace": {
"command": "node",
"args": ["/path/to/google-workspace-server/build/index.js"],
"env": {
"GOOGLE_CLIENT_ID": "your_client_id",
"GOOGLE_CLIENT_SECRET": "your_client_secret",
"GOOGLE_REFRESH_TOKEN": "your_refresh_token"
}
}
}
}
```
**Authentication Issues**:
- Ensure all required OAuth scopes are granted
- Verify client ID and secret are correct
- Check if refresh token is valid
**API Errors**:
- Check Google Cloud Console for API quotas and limits
- Ensure APIs are enabled for your project
- Verify request parameters match the required format