Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Gmail
mail

Gmail MCP Server

MCP server for Gmail email management

gmailemailgooglecommunication

About

## Gmail MCP Server: Email Integration The **Gmail MCP Server** integrates Gmail's email platform into Google Antigravity. This enables reading, sending, and managing emails programmatically for automation, notifications, and email-based workflows. ### Why Gmail MCP? Gmail is ubiquitous: - **1.8B Users**: Massive user base - **Google Workspace**: Enterprise integration - **Labels**: Powerful organization - **Search**: Google-quality search - **APIs**: Comprehensive REST API ### Key Features #### 1. Send Email ```python from google.oauth2.credentials import Credentials from googleapiclient.discovery import build import base64 from email.mime.text import MIMEText creds = Credentials.from_authorized_user_file("token.json") service = build("gmail", "v1", credentials=creds) def send_email(to, subject, body): message = MIMEText(body) message["to"] = to message["subject"] = subject raw = base64.urlsafe_b64encode(message.as_bytes()).decode() service.users().messages().send( userId="me", body={"raw": raw} ).execute() ``` #### 2. Read Email ```python # List recent messages results = service.users().messages().list( userId="me", q="is:unread from:important@example.com", maxResults=10 ).execute() for msg in results.get("messages", []): message = service.users().messages().get( userId="me", id=msg["id"] ).execute() # Parse headers headers = {h["name"]: h["value"] for h in message["payload"]["headers"]} print(f"Subject: {headers.get('Subject')}") ``` #### 3. Labels and Filters ```python # Create label label = service.users().labels().create( userId="me", body={"name": "Automated"} ).execute() # Apply label to messages service.users().messages().modify( userId="me", id=message_id, body={"addLabelIds": [label["id"]]} ).execute() ``` ### Configuration ```json { "mcpServers": { "gmail": { "command": "npx", "args": ["-y", "@anthropic/mcp-gmail"], "env": { "GMAIL_CREDENTIALS_PATH": "~/.config/gmail/credentials.json", "GMAIL_TOKEN_PATH": "~/.config/gmail/token.json" } } } } ``` ### Use Cases **Email Automation**: Auto-respond to specific emails. **Report Distribution**: Send automated reports via email. **Email Monitoring**: Watch for important incoming messages. The Gmail MCP Server brings Gmail automation to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "gmail": {
      "mcpServers": {
        "gmail": {
          "args": [
            "-y",
            "@gongrzhe/server-gmail-autoauth-mcp"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. First run will open browser for Google OAuth
  2. 22. Supports reading, sending, and searching emails
  3. 33. Requires Google account authentication

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers