JUHE API Marketplace
vakharwalad23 avatar
MCP Server

Google MCP

This is a collection of Google-native tools (e.g., Gmail, Calendar) for the MCP protocol, designed to integrate seamlessly with AI clients like Claude or Cursor.

10
GitHub Stars
8/22/2025
Last Updated
MCP Server Configuration
1{
2 "name": "google-mcp",
3 "command": "bunx",
4 "args": [
5 "--no-cache",
6 "google-mcp@latest"
7 ],
8 "env": {
9 "GOOGLE_OAUTH_CLIENT_ID": "",
10 "GOOGLE_OAUTH_CLIENT_SECRET": "",
11 "GOOGLE_OAUTH_TOKEN_PATH": " CAN_BE_ANYWHERE_ON_YOUR_SYSTEM",
12 "GOOGLE_CLIENT_EMAIL": "",
13 "GOOGLE_PRIVATE_KEY": "",
14 "GMAIL_USER_TO_IMPERSONATE": ""
15 }
16}
JSON16 lines

README Documentation

Google MCP Tools

smithery badge

This is a collection of Google-native tools (e.g., Gmail, Calendar) for the MCP protocol, designed to integrate seamlessly with AI clients like Claude or Cursor.

Google MCP server
JSON configs
{
  "mcpServers": {
    "google-mcp": {
      "command": "bunx",
      "args": ["--no-cache", "google-mcp@latest"],
      "env": {
        // Either can be used, but not both
        // Use OAuth
        "GOOGLE_OAUTH_CLIENT_ID": "<YOUR_CLIENT_ID>",
        "GOOGLE_OAUTH_CLIENT_SECRET": "<YOUR_CLIENT_SECRET>",
        "GOOGLE_OAUTH_TOKEN_PATH": "<PATH_TO_STORE_TOKENS> CAN_BE_ANYWHERE_ON_YOUR_SYSTEM",
        // Use Service Account
        "GOOGLE_CLIENT_EMAIL": "<YOUR_SERVICE_ACCOUNT_EMAIL>",
        "GOOGLE_PRIVATE_KEY": "<YOUR_SERVICE_ACCOUNT_PRIVATE_KEY>",
        "GMAIL_USER_TO_IMPERSONATE": "<USER_TO_IMPERSONATE>"
      }
    }
  }
}

Features

  • OAuth Management:

    • Refresh expired access tokens automatically
    • Update tokens in the token file without re-authentication
    • Complete re-authentication with automated token cleanup
    • Maintain session continuity across long-running operations
  • Gmail:

    • Send emails with multiple recipients (to, cc, bcc) and attachments.
    • List emails with custom queries, labels, and result limits.
    • Read specific emails by ID.
    • Manage labels (add, remove, list).
    • Draft and delete emails.
  • Calendar:

    • List calendars and set a default calendar.
    • Create events with details (summary, start/end time, attendees, etc.).
    • List upcoming events with customizable filters.
    • Update or delete existing events.
    • Find free time slots for scheduling.
  • Drive:

    • Filter with search queries
    • Sort by modification date or other criteria
    • Customize display count
    • View detailed file metadata
    • Read file content (text, docs, spreadsheets)
    • Create new files with specified content
    • Update existing files
    • Delete files (trash or permanent)
    • Share files with specific permissions
  • Tasks:

    • View all task lists
    • Create new task lists
    • Delete existing task lists
    • Set default task list
    • List tasks with filters
    • View task details
    • Create tasks with title, notes, and due dates
    • Update task properties
    • Mark tasks as complete
    • Delete tasks
  • TODO Plans:

    • Google Contacts: Search and manage contacts.
    • And Many More...

You can chain commands for workflows, e.g.:

"List my unread emails, draft a reply to the latest one, and schedule a follow-up meeting tomorrow at 2 PM."

OAuth Token Management

The server includes built-in OAuth token management to handle expired access tokens gracefully:

  • Automatic Token Refresh: When access tokens expire, you can refresh them without going through the full OAuth flow again
  • Complete Re-authentication: Automatically handle cases where refresh tokens are invalid or expired
  • Persistent Storage: Refreshed tokens are automatically saved to your configured token file path
  • Session Continuity: All Google services are re-initialized with fresh tokens after refresh

Refreshing Tokens

If you encounter authentication errors or want to proactively refresh your tokens, simply ask:

Refresh my Google OAuth tokens

This will:

  1. Use your stored refresh token to get new access tokens
  2. Update the token file with the new credentials
  3. Re-initialize all Google services with fresh authentication
  4. Show you the new token expiration time

Complete Re-authentication

If you get invalid_grant errors or your refresh token has expired, you can start fresh:

Re-authenticate my Google account

This automated process will:

  1. Delete existing tokens from your token file
  2. Start OAuth server to handle the callback
  3. Open browser for fresh authentication
  4. Save new tokens automatically
  5. Re-initialize services with fresh credentials

You'll only need to click "Allow" in the browser - everything else is automated!

Note: If you don't have a valid refresh token, you'll need to go through the initial OAuth authentication flow again.

Manual Installation

  1. Prerequisites:

    • Install Bun:
    brew install oven-sh/bun/bun  # macOS/Linux with Homebrew
    
  2. Set Up OAuth:

    • Create a Google Cloud project in the Google Cloud Console.
    • Set up OAuth 2.0 credentials (Client ID, Client Secret).
    • Choose the type Desktop app.
    • If using test mode, add your email to the test users list.
    • Make sure to enable API access for desired services (Gmail, Calendar, Drive etc.).
  3. Configure Your Client: Edit your claude_desktop_config.json (or equivalent config file for your client):

{
  "mcpServers": {
    "google-mcp": {
      "command": "bunx",
      "args": ["--no-cache", "google-mcp@latest"],
      "env": {
        // Either can be used, but not both
        // Use OAuth
        "GOOGLE_OAUTH_CLIENT_ID": "<YOUR_CLIENT_ID>",
        "GOOGLE_OAUTH_CLIENT_SECRET": "<YOUR_CLIENT_SECRET>",
        "GOOGLE_OAUTH_TOKEN_PATH": "<PATH_TO_STORE_TOKENS>",
        // Use Service Account
        "GOOGLE_CLIENT_EMAIL": "<YOUR_SERVICE_ACCOUNT_EMAIL>",
        "GOOGLE_PRIVATE_KEY": "<YOUR_SERVICE_ACCOUNT_PRIVATE_KEY>",
        "GMAIL_USER_TO_IMPERSONATE": "<USER_TO_IMPERSONATE>"
      }
    }
  }
}
  1. Authenticate:
    • The first time you run the server, it will open a browser for OAuth authentication. Follow the prompts to grant access, and tokens will be saved to GOOGLE_OAUTH_TOKEN_PATH.

Usage

Now, ask Claude to use the google-mcp tool.

Send an email to jane.doe@example.com with the subject "Meeting Notes" and body "Here are the notes from today."
List my upcoming calendar events for the next 3 days.
Create a calendar event titled "Team Sync" tomorrow at 10 AM for 1 hour.
Refresh my Google OAuth tokens
Re-authenticate my Google account

Local Development

git clone https://github.com/vakharwalad23/google-mcp.git
cd google-mcp
bun install
bun run index.ts

Thank you for using Google MCP Tools! If you have any questions or suggestions, feel free to open an issue or contribute to the project.

Play around with the tools and enjoy!!

Quick Install

Quick Actions

Key Features

Model Context Protocol
Secure Communication
Real-time Updates
Open Source