gmail-manager

Verified·Scanned 2/18/2026

This skill automates Gmail management via Rube MCP using tools such as GMAIL_FETCH_EMAILS and GMAIL_SEND_EMAIL. It calls https://app.rubeai.io/mcp and requires the RUBE_API_KEY environment variable; network and credential usage are purpose-aligned.

from clawhub.ai·ve164a65·10.7 KB·0 installs
Scanned from 1.0.0 at e164a65 · Transparency log ↗
$ vett add clawhub.ai/pepperbotts/gmail-manager

Gmail Manager

Expert Gmail management skill for Clawdbot using Rube MCP integration.

Features

  • Inbox Triage: Efficient daily email processing workflow
  • Inbox Zero: Systematic approach to empty inbox
  • Smart Search: Gmail query syntax for finding emails
  • Batch Operations: Bulk archive, label, and organize
  • Email Templates: Cold outreach, follow-ups, quick replies

Requirements

  • Rube MCP connection with Gmail authenticated
  • RUBE_API_KEY environment variable set

Quick Start

# Check inbox
GMAIL_FETCH_EMAILS
  arguments: {"q": "is:unread label:INBOX", "maxResults": 20}

# Send email
GMAIL_SEND_EMAIL
  arguments: {
    "to": "recipient@example.com",
    "subject": "Hello",
    "body": "Message here"
  }

# Archive processed
GMAIL_BATCH_MODIFY_MESSAGES
  arguments: {
    "ids": ["msg_id"],
    "removeLabelIds": ["INBOX"]
  }

Available Tools

ToolPurpose
GMAIL_FETCH_EMAILSList/search emails
GMAIL_GET_EMAIL_BY_IDGet email details
GMAIL_SEND_EMAILSend new email
GMAIL_REPLY_TO_EMAILReply to thread
GMAIL_CREATE_DRAFTSave draft
GMAIL_BATCH_MODIFY_MESSAGESBulk update labels
GMAIL_LIST_LABELSGet all labels
GMAIL_TRASH_MESSAGEMove to trash

Search Syntax

is:unread                    # Unread emails
from:name@example.com        # From sender
subject:keyword              # Subject contains
has:attachment               # Has attachments
newer_than:7d                # Last 7 days

License

MIT