Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables AI assistants to send, read, search, and manage Gmail emails, drafts, and labels via the Model Context Protocol.

README.md

Gmail MCP

<p align="center"> <img src="https://github.com/ykuchiki/gmail-mcp/blob/main/assets/gmail-mcp-logo.png" alt="Gmail MCP Logo" width="200"> </p>

<p align="center"> <a href="https://github.com/ykuchiki/gmail-mcp/LICENSE"> <img src="https://img.shields.io/github/license/ykuchiki/gmail-mcp" alt="License"> </a> <img src="https://img.shields.io/badge/python-3.11+-blue.svg" alt="Python Version"> <img src="https://img.shields.io/badge/MCP-compatible-brightgreen.svg" alt="MCP Compatible"> </p>

<p align="center"> <b>Gmail API for AI assistants using Model Context Protocol</b><br> <b><a href="#english">English</a> | <a href="#spanish">Español</a> | <a href="#japanese">日本語</a></b> </p>

---

<a id="english"></a>

📋 English Documentation

Pull requests to this repository are welcome.

📖 Table of Contents

<a id="overview"></a>

🔍 Overview

Gmail MCP is a server implementation that enables AI assistants to interact with Gmail through the MCP (Model Context Protocol). It provides tools for sending emails, managing drafts, reading emails, searching through your inbox, and managing Gmail labels.

<a id="features"></a>

✨ Features

  • ✉️ Send emails and create drafts
  • 📬 Read and search emails
  • 🗑️ Delete emails
  • 🏷️ Manage Gmail labels (create, update, delete)
  • 🔐 OAuth2.0 authentication with Gmail API

<a id="Prerequisites"></a>

📋 Prerequisites

  • Python 3.11 or higher
  • Gmail account
  • Google Cloud Platform project with Gmail API enabled
  • uv - Python package installer

<a id="Setup"></a>

🚀 Setup

  1. Clone this repository
git clone https://github.com/ykuchiki/gmail-mcp.git
cd gmail-mcp
  1. Create and activate a virtual environment
uv init
  1. Install dependencies
uv pip install -r requirements.txt
  1. Set up OAuth credentials
  • Create a directory named credentials in the root of the project
  • Create a project in Google Cloud Console
  • Enable the Gmail API
  • Create OAuth credentials
  • Add the following URI to the Authorized redirect URIs:
     http://localhost:8080/
  • Download the credentials JSON file and save it as credentials/client_secret_gmail_oauth.json
  1. Add MCP server

Please refer to your MCP client's official documentation for specific instructions. Make sure to adjust the path according to your environment. ``json { "mcpServers": { "gmail-mcp": { "command": "uv", "args": [ "--directory", "/path/to/your/gmail-mcp/src", "run", "main.py" ] } } } ``

  1. Run the server
uv run main.py

<a id="Usage"></a>

💡 Usage

The server can be used with any MCP-compatible client. On first run, it will prompt you to authenticate with your Gmail account.

<a id="License"></a>

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

---

<a id="japanese"></a>

📋 日本語ドキュメント

本リポジトリはpullリクエスト大歓迎です。

📖 目次

<a id="概要"></a>

🔍 概要

Gmail MCPは、AIアシスタントがMCP(Model Context Protocol)を通じてGmailを使用できるようにするサーバー実装です。メールの送信、下書きの管理、メールの読み取り、受信トレイの検索、Gmailラベルの管理などのツールを提供します。

<a id="機能"></a>

✨ 機能

  • ✉️ メールの送信と下書き作成
  • 📬 メールの読み取りと検索
  • 🗑️ メールの削除
  • 🏷️ Gmailラベルの管理(作成、更新、削除)
  • 🔐 Gmail APIとのOAuth2.0認証

\- 📎 添付ファイル送信・下書き(複数可, ローカルファイルパス)

<a id="前提条件"></a>

📋 前提条件

  • Python 3.11以上
  • Gmailアカウント
  • Gmail APIが有効化されたGoogle Cloud Platformプロジェクト
  • uv - Pythonパッケージインストーラー

<a id="セットアップ"></a>

🚀 セットアップ

  1. リポジトリをクローン
git clone https://github.com/ykuchiki/gmail-mcp.git
cd gmail-mcp
  1. 仮想環境の作成と有効化
uv init
  1. 依存関係のインストール
uv pip install -r requirements.txt
  1. OAuth認証情報の設定
  • 最初にプロジェクトのルートディレクトリ直下にcredentialsディレクトリを作成
  • Google Cloud Consoleでプロジェクトを作成
  • Gmail APIを有効化
  • OAuth認証情報を作成
  • 認証済みのリダイレクトURIに以下を追加:
     http://localhost:8080/
  • 認証情報JSONファイルをダウンロードし、credentials/client_secret_gmail_oauth.jsonとして保存
  1. MCPサーバーを追加

追加方法はご使用のMCPクライアントの公式ドキュメントをご確認ください。 また、パスは環境に合わせて修正してください。 ``json { "mcpServers": { "gmail-mcp": { "command": "uv", "args": [ "--directory", "/path/to/your/gmail-mcp/src", "run", "main.py" ] } } } ``

  1. サーバーの実行
uv run main.py

<a id="使用方法"></a>

💡 使用方法

このサーバーは、MCP互換のクライアントと共に使用できます。初回実行時には、Gmailアカウントで認証するよう促されます。

添付ファイルを付けて送信 / 下書き作成

attachments 引数でローカルファイルのパスを指定します(複数可・絶対パス推奨)。

例: 送信 ``json { "to": ["someone@example.com"], "subject": "レポート送付の件", "body": "ご確認ください。", "attachments": [ "/Users/you/Documents/report.pdf", "/Users/you/Pictures/logo.png" ] } ``

例: 下書き作成 ``json { "to": ["someone@example.com"], "subject": "資料", "body": "添付しています。", "attachments": ["/absolute/path/to/file.txt"] } ``

注意事項:

  • 合計サイズは約24MBを上限とし、それを超える場合はエラーになります(Gmailの25MB制限に対する安全余裕)。
  • MIMEタイプは自動推定します。判別できない場合はapplication/octet-streamとして送信します。
  • ファイルが存在しない/読み取り不可の場合はエラーになります。

<a id="ライセンス"></a>

📄 ライセンス

このプロジェクトはMITライセンスの下で提供されています - 詳細はLICENSEファイルをご覧ください。

---

<a id="spanish"></a>

📋 Documentación en Español

Las pull requests a este repositorio son bienvenidas.

📖 Tabla de Contenidos

<a id="Descripción General"></a>

🔍 Descripción General

Gmail MCP es una implementación de servidor que permite a los asistentes de IA interactuar con Gmail a través del MCP (Model Context Protocol). Proporciona herramientas para enviar correos electrónicos, gestionar borradores, leer correos, buscar en tu bandeja de entrada y administrar etiquetas de Gmail.

<a id="Características"></a>

✨ Características

  • ✉️ Enviar correos y crear borradores
  • 📬 Leer y buscar correos
  • 🗑️ Eliminar correos
  • 🏷️ Gestionar etiquetas de Gmail (crear, actualizar, eliminar)
  • 🔐 Autenticación OAuth2.0 con la API de Gmail

<a id="Requisitos Previos"></a>

📋 Requisitos Previos

  • Python 3.11 o superior
  • Cuenta de Gmail
  • Proyecto en Google Cloud Platform con la API de Gmail habilitada
  • uv - Instalador de paquetes Python

<a id="Configuración"></a>

🚀 Configuración

  1. Clonar este repositorio
git clone https://github.com/ykuchiki/gmail-mcp.git
cd gmail-mcp
  1. Crear y activar un entorno virtual
uv init
  1. Instalar dependencias
uv pip install -r requirements.txt
  1. Configurar credenciales OAuth
  • Crear un directorio llamado credentials en la raíz del proyecto
  • Crear un proyecto en Google Cloud Console
  • Habilitar la API de Gmail
  • Crear credenciales OAuth
  • Agregar la siguiente URI a las URIs de redirección autorizadas:
     http://localhost:8080/
  • Descargar el archivo JSON de credenciales y guardarlo como credentials/client_secret_gmail_oauth.json
  1. Agregar servidor MCP

Por favor, consulta la documentación oficial de tu cliente MCP para instrucciones específicas. Asegúrate de ajustar la ruta según tu entorno. ``json { "mcpServers": { "gmail-mcp": { "command": "uv", "args": [ "--directory", "/path/to/your/gmail-mcp/src", "run", "main.py" ] } } } ``

  1. Ejecutar el servidor
uv run main.py

<a id="Uso"></a>

💡 Uso

El servidor puede ser utilizado con cualquier cliente compatible con MCP. En la primera ejecución, te pedirá que te autentiques con tu cuenta de Gmail.

<a id="Licencia"></a>

📄 Licencia

Este proyecto está licenciado bajo la Licencia MIT - consulta el archivo LICENSE para más detalles.

---

TODO

  • [x] 基本機能実装
  • [ ] search_emailsで送信メールIDは除外or違う方法で実装

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.