trackmcp
Back to directory
vakharwalad23

google-mcp

View on GitHub

Collection of Google-native tools (e.g., Gmail, Calendar) for the MCP

21 stars TypeScriptOthers Updated Aug 7, 2026
googlegoogle-apimcpmodelcontextprotocol

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.

Quick Install

Click below for one-click install with `.mcpb`:

JSON configs

json
{
  "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": "",
        "GOOGLE_OAUTH_CLIENT_SECRET": "",
        "GOOGLE_OAUTH_TOKEN_PATH": " CAN_BE_ANYWHERE_ON_YOUR_SYSTEM",
        // Use Service Account
        "GOOGLE_CLIENT_EMAIL": "",
        "GOOGLE_PRIVATE_KEY": "",
        "GMAIL_USER_TO_IMPERSONATE": ""
      }
    }
  }
}

What's New in v1.1.0

๐Ÿ†• Major Features

  • Complete Email Attachment Support:
    • โœ‰๏ธ Send emails with attachments from local files or Google Drive
    • ๐Ÿ“ฅ Download all email attachments to local storage
    • ๐Ÿ”„ Dual attachment sources: Local file paths or Google Drive file IDs
    • ๐Ÿ“ Smart file handling: Automatic MIME type detection and filename sanitization

๐Ÿ”ง Enhanced Email Capabilities

  • Multi-source attachments: Attach files from local storage or Google Drive in the same email
  • Custom filenames: Override original filenames for attachments
  • File size validation: Automatic 25MB Gmail limit enforcement
  • Cross-platform downloads: Auto-detection of Downloads folder on Windows, macOS, and Linux
  • Conflict resolution: Automatic file renaming to prevent overwrites

๐Ÿ“ New & Enhanced Tools

  • `google_gmail_send_email`: Now supports attachments from local files and Google Drive
  • `google_gmail_draft_email`: Create drafts with attachments
  • `google_gmail_download_attachments`: Download all email attachments with customizable path

Features

  • OAuth Management:
    • Gmail:
      • Calendar:
        • Drive:
          • 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."

            Hosted deployment

            A hosted deployment is available on Fronteir AI.

            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:

            code
            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:

            code
            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:

              bash
              brew install oven-sh/bun/bun  # macOS/Linux with Homebrew

              2. Set Up OAuth:

                3. Configure Your Client: Edit your claude_desktop_config.json (or equivalent config file for your client):

                json
                {
                  "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": "",
                        "GOOGLE_OAUTH_CLIENT_SECRET": "",
                        "GOOGLE_OAUTH_TOKEN_PATH": "",
                        // Use Service Account
                        "GOOGLE_CLIENT_EMAIL": "",
                        "GOOGLE_PRIVATE_KEY": "",
                        "GMAIL_USER_TO_IMPERSONATE": ""
                      }
                    }
                  }
                }

                4. Authenticate:

                  Usage

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

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

                  Transport Support

                  This MCP server supports both stdio and HTTP transports via environment variables:

                  Stdio Transport (Default)

                  bash
                  # Default mode - uses stdio transport
                  bun run dev
                  # Or explicitly
                  MCP_TRANSPORT=stdio bun run index.ts

                  HTTP Transport (Streamable HTTP)

                  bash
                  # HTTP mode with Streamable HTTP support
                  MCP_TRANSPORT=http bun run index.ts
                  # Or with custom port
                  MCP_TRANSPORT=http PORT=3000 bun run index.ts

                  When running in HTTP mode, the server provides these endpoints:

                  • `GET /health` - Health check endpoint with session count
                  • `GET /mcp` - Session info and server status
                  • `POST /mcp` - Main MCP JSON-RPC endpoint for sending requests
                  • `DELETE /mcp` - End session endpoint

                  Session Management

                  The Streamable HTTP transport uses the official MCP SDK with automatic session management:

                  1. Automatic Sessions: The server automatically generates secure session IDs

                  2. SSE Streaming: Supports Server-Sent Events for real-time communication

                  3. JSON Responses: Falls back to JSON responses when SSE is not available

                  4. DNS Protection: Built-in security features for production deployment

                  Configuration for HTTP Transport

                  For HTTP transport, configure your client with the server URL:

                  json
                  {
                    "mcpServers": {
                      "google-mcp-http": {
                        "url": "http://localhost:3000/mcp"
                      }
                    }
                  }

                  Local Development

                  bash
                  git clone https://github.com/vakharwalad23/google-mcp.git
                  cd google-mcp
                  bun install
                  
                  # Run in stdio mode (default)
                  bun run dev:stdio
                  
                  # Run in HTTP mode
                  bun run dev:http

                  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!!

                  Frequently asked questions

                  What is google-mcp?

                  google-mcp is Collection of Google-native tools (e.g., Gmail, Calendar) for the MCP

                  How do I install google-mcp?

                  Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

                  Is google-mcp open source?

                  Yes โ€” it is hosted on GitHub at https://github.com/vakharwalad23/google-mcp and has 21 stars.

                  Related MCP tools

                  Run your own MCP server? See who uses it and what to fix.

                  Measure it with TrackMCP