Skip to main content

Overview

The Google Gmail server enables AI assistants to interact with Gmail, providing comprehensive email management including message search, sending, labeling, and thread management through the Gmail API.

How to Add Google Gmail

1

Add Server

Add the Google Gmail server to your Civic environment through the server directory.
2

Authorize

Simply log in with your Google account and approve the OAuth consent request. No admin approval needed.
3

Test Connection

Try “Show me my latest 5 emails” to verify the connection works.
Simple OAuth Consent: Gmail uses standard Google OAuth consent. No special admin approval or Google Workspace setup is required - works with any Gmail account.

What You Can Do

Email Search & Reading

Search messages with Gmail operators and read full content

Sending & Drafting

Send emails and create drafts directly from AI assistants

Thread Management

Read complete conversation threads and analyze email chains

Label Management

Create, update, and apply labels to organize your inbox

Available Tools (11)

Message Operations

Search messages using Gmail query operators. Returns Message IDs, Thread IDs, and web interface links for verification.
Retrieve full content of a specific message including subject, sender, and body.
Retrieve multiple messages in a single batch request (up to 5 messages). Supports full content or metadata-only format.
Send an email using your Gmail account. Required: subject, body. Optional: to, cc, bcc, body_format (plain/html), from_name, from_email (Send As alias). For replies: thread_id, in_reply_to, references. Supports attachments by file path or base64 content.
Create a draft email with optional recipient. Can be completed and sent later.

Thread Operations

Retrieve complete conversation thread including all messages in chronological order.
Retrieve multiple threads in batch (up to 25 threads). Useful for analyzing conversations at scale.
High-risk tools: send_gmail_message sends email directly from your account. manage_gmail_label (with delete action) and batch_modify_gmail_message_labels can bulk-archive or trash messages. For automated agents, consider adding guardrails to block send_gmail_message or restrict bulk label operations. See Guardrails.

Label Management

List all labels in your Gmail account with IDs, names, and types.
Create, update, or delete labels. Control label visibility in both label list and message list.
Add or remove labels from a single message. Use to archive (remove INBOX) or delete (add TRASH).
Add or remove labels from multiple messages simultaneously for bulk organization.

Use Cases

“Find all emails from john@example.com in the last week” - Use Gmail search operators to locate specific messages.

Reading Messages

“Show me the content of the most recent email from the newsletter” - Retrieve and display full message content.

Batch Processing

“Get the last 5 messages from my inbox and summarize them” - Process multiple emails efficiently in one request.

Sending Email

“Send an email to sarah@example.com about tomorrow’s meeting” - Compose and send emails directly.

Draft Creation

“Create a draft email for the quarterly report” - Prepare emails for review before sending.

Thread Analysis

“Show me the entire conversation thread about the project proposal” - Read complete email chains.

Label Organization

“Create a label called ‘Important Projects’ and apply it to all emails from client@example.com” - Organize inbox with custom labels.

Bulk Label Operations

“Archive all emails from notifications@example.com” - Remove INBOX label from multiple messages.
Gmail Search Operators: Supports standard Gmail search syntax including from:, to:, subject:, after:, before:, has:attachment, is:unread, and more.Batch Limits: Message batch operations support up to 5 messages, thread batch operations support up to 25 threads.Label Operations: Archiving removes the INBOX label. Deleting adds the TRASH label. System labels like INBOX, SENT, TRASH cannot be deleted.

Guardrails

In addition to the 14 universal guardrails, this server has 21 server-specific guardrails across 8 operations.
There is no send_gmail_message tool for creating new outbound email from scratch — draft_gmail_message is used instead, keeping a human in the loop before sending. The send_gmail_message guardrails below apply to reply sending via thread operations.
Choosing the right send guardrail:
  • Use Approved Email Domains when you want to allow any address at a domain — e.g. @civic.com. It uses an ends_with operator, so titus@civic.com, team@civic.com, etc. all pass.
  • Use Send to Verified Recipients Only only when you need exact per-address control (e.g. one specific address, no others). It uses a matches operator — if the to value doesn’t match exactly, the send is blocked.
A common mistake is configuring Send to Verified Recipients Only expecting domain-level filtering. If your intent is “only send within our company domain”, use Approved Email Domains.Configure guardrails via the Civic UI or ask the Configurator Agent: “Add an approved email domains guardrail to my Gmail server for @civic.com.”