gmail-mcp-work-with
Key gotchas and practical tips for using Gmail MCP, based on real usage experience
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Key gotchas and practical tips for using Gmail MCP, based on real usage experience
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Helps users connect and use a service in Rebel when it isn't already in the built-in connector catalog. Acts as an expert advisor — runs the full build-vs-buy check (catalog, MCP Registry, community) before scaffolding a custom MCP server and guiding research, implementation, security review, and contribution.
Guides users through adding new tools or capabilities to an existing connector (MCP server). Handles eligibility, workspace setup, connector research, implementation via Software Engineer workflow, local testing, and PR submission with an extension-specific template.
Capture citable sources (meetings, documents, files, media, web content) as structured files in memory/sources/ with provenance metadata for traceability.
Help users celebrate impactful wins and surface important learnings by analyzing their recent communications and activities.
Guidelines for maintaining single sources of truth and using signposting to connect documentation without duplication
Evaluate a finalised meeting transcript and distribute relevant content to other spaces, deciding per space whether to copy the full transcript, write a sanitised summary, or skip.
| name | gmail-mcp-work-with |
| description | Key gotchas and practical tips for using Gmail MCP, based on real usage experience |
| last_updated | "2025-01-07T00:00:00.000Z" |
| tools_required | ["gmail MCP"] |
| dependencies | [] |
| agent_type | main_agent |
Key tips and gotchas from real usage of Gmail MCP.
| Tool ID | Purpose |
|---|---|
search_workspace_emails | Search/list emails with query filters |
get_workspace_email_thread | Get full thread conversation by thread ID |
send_workspace_email | Send email or reply (use replyToMessageId for replies) |
list_workspace_drafts / get_workspace_draft | Browse and inspect existing drafts |
create_workspace_draft / update_workspace_draft | Create or edit drafts (with optional attachments) |
send_workspace_draft / delete_workspace_draft | Send or discard a draft |
download_workspace_attachment / upload_workspace_attachment / delete_workspace_attachment | Per-action attachment tools (replace the legacy manage_workspace_attachment) |
THE BIG ONE: Gmail MCP cannot download attachment files.
Workaround: Generate URLs for manual access:
https://mail.google.com/mail/u/0/#inbox/{message_id}
Use the message id from search results as {message_id}.
Example workflow:
- [ ] [Invoice from vendor](https://mail.google.com/mail/u/0/#inbox/18c5f3a2b4d6e789)
Format: Must use YYYY/MM/DD for after: and before:
✅ Good: after:2024/11/01 before:2024/11/30
❌ Bad: after:11/01/2024 or after:2024-11-01
Different Gmail MCP instances may connect to different Google Workspace accounts.
Tip: Make sure you're using the correct instance for the account you're searching (personal vs work vs client-specific).
Common operators that work well:
from:sender@domain.com - filter by senderhas:attachment - only emails with attachmentsafter:2024/01/01 - date filters (use YYYY/MM/DD format)subject:"exact phrase" - subject line searchkeyword OR otherkeyword - combine termsWatch out for:
When building checklists from multiple email searches, use parallel tool calls to search multiple queries simultaneously.
Generate all URLs in one pass:
for message in search_results:
url = f"https://mail.google.com/mail/u/0/#inbox/{message.id}"
checklist.append(f"- [ ] [{message.subject}]({url})")
The Gmail API does not auto-include previous messages in the body — you must compose the full body yourself.
get_workspace_email_thread to fetch the conversation, compose your reply followed by quoted previous messages, then send with send_workspace_email using replyToMessageId.send_workspace_email (no replyToMessageId).See email-quoting skill for formatting conventions: plain text > quoting, HTML <blockquote>, forward headers, and attribution lines.
If Gmail MCP fails: