AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Gmail Mcp

mcp-ykuchiki-gmail-mcp · by ykuchiki

MCP server for Gmail API implemented in Python. Enables AI Agents to send, receive, search emails and manage labels in Gmail.

No reviews yet
0 installs
31 views
0.0% view→install

Install

$ agentstack add mcp-ykuchiki-gmail-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-ykuchiki-gmail-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
11mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Gmail Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Gmail MCP

Gmail API for AI assistants using Model Context Protocol English | Español | 日本語


📋 English Documentation

Pull requests to this repository are welcome.

📖 Table of Contents

  • [Overview](#overview)
  • [Features](#features)
  • [Prerequisites](#prerequisites)
  • [Setup](#setup)
  • [Usage](#usage)
  • [License](#license)

🔍 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.

✨ Features

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

📋 Prerequisites

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

🚀 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.

{
    "mcpServers": {
        "gmail-mcp": {
            "command": "uv",
            "args": [
                "--directory",
                "/path/to/your/gmail-mcp/src",
                "run",
                "main.py"
            ]
        }
    }
}
  1. Run the server
uv run main.py

💡 Usage

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

📄 License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.


📋 日本語ドキュメント

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

📖 目次

  • [概要](#概要)
  • [機能](#機能)
  • [前提条件](#前提条件)
  • [セットアップ](#セットアップ)
  • [使用方法](#使用方法)
  • [ライセンス](#ライセンス)

🔍 概要

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

✨ 機能

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

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

📋 前提条件

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

🚀 セットアップ

  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クライアントの公式ドキュメントをご確認ください。 また、パスは環境に合わせて修正してください。

{
    "mcpServers": {
        "gmail-mcp": {
            "command": "uv",
            "args": [
                "--directory",
                "/path/to/your/gmail-mcp/src",
                "run",
                "main.py"
            ]
        }
    }
}
  1. サーバーの実行
uv run main.py

💡 使用方法

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

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

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

例: 送信

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

例: 下書き作成

{
  "to": ["someone@example.com"],
  "subject": "資料",
  "body": "添付しています。",
  "attachments": ["/absolute/path/to/file.txt"]
}

注意事項:

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

📄 ライセンス

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


📋 Documentación en Español

Las pull requests a este repositorio son bienvenidas.

📖 Tabla de Contenidos

  • [Descripción General](#descripción-general)
  • [Características](#características)
  • [Requisitos Previos](#requisitos-previos)
  • [Configuración](#configuración)
  • [Uso](#uso)
  • [Licencia](#licencia)

🔍 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.

✨ 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

📋 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

🚀 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.

{
    "mcpServers": {
        "gmail-mcp": {
            "command": "uv",
            "args": [
                "--directory",
                "/path/to/your/gmail-mcp/src",
                "run",
                "main.py"
            ]
        }
    }
}
  1. Ejecutar el servidor
uv run main.py

💡 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.

📄 Licencia

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


TODO

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

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.