Gmail MCP Server

Communicationstdiov1.1.0
Repositorio

MCP server for Gmail that lets AI agents read, search, draft, and send email, manage labels, and organize the inbox via the Gmail API with OAuth. Handy for triaging mail, drafting replies, and automating routine inbox workflows from an AI client.

Conectar

Añade esta configuración a .claude/mcp.json

{
  "mcpServers": {
    "gmail": {
      "command": "npx",
      "args": [
        "-y",
        "@gongrzhe/server-gmail-autoauth-mcp"
      ],
      "env": {
        "GMAIL_OAUTH_CREDENTIALS": "<YOUR_GMAIL_OAUTH_CREDENTIALS>"
      }
    }
  }
}

Herramientas (3)

search_emails

Search the mailbox using Gmail search syntax.

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Gmail search query (e.g., \"from:boss is:unread\")"
    },
    "max_results": {
      "type": "integer",
      "description": "Maximum number of messages to return"
    }
  }
}

send_email

Send an email message.

{
  "type": "object",
  "required": [
    "to",
    "subject",
    "body"
  ],
  "properties": {
    "to": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Recipient email addresses"
    },
    "body": {
      "type": "string",
      "description": "Email body"
    },
    "subject": {
      "type": "string",
      "description": "Email subject"
    }
  }
}

create_draft

Create a draft email without sending it.

{
  "type": "object",
  "required": [
    "to",
    "subject",
    "body"
  ],
  "properties": {
    "to": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Recipient email addresses"
    },
    "body": {
      "type": "string",
      "description": "Email body"
    },
    "subject": {
      "type": "string",
      "description": "Email subject"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
GongRzhe (@GongRzhe)
Repositorio
https://github.com/GongRzhe/Gmail-MCP-Server
Licencia
MIT
Versión
1.1.0
Estrellas
1,900
Última actualización
24 de junio de 2026