一键导入
gmail
Search, read, send, and manage Gmail emails via Google API
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search, read, send, and manage Gmail emails via Google API
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run OpenAI Codex CLI for autonomous software engineering tasks via non-interactive `codex exec` with chat-friendly outputs.
Use the Cursor CLI (agent) for software engineering tasks. Includes installation, auth, commands, terminal-based automation, and best practices for AI coding workflows.
Run Google Gemini CLI for autonomous coding and general tasks via headless mode with chat-friendly outputs.
GitHub operations via gh CLI — list issues, create branches, create PRs, clone repos.
Interact with Railway deployments — check status, view logs, redeploy services, and manage environment variables.
Query system resources — CPU, memory, disk, processes, and network interfaces.
| name | gmail |
| description | Search, read, send, and manage Gmail emails via Google API |
| requires | {"oauth":[{"provider":"google","scopes":["https://www.googleapis.com/auth/gmail.readonly","https://www.googleapis.com/auth/gmail.send","https://www.googleapis.com/auth/gmail.modify"]}]} |
Search, read, send, and manage Gmail emails using the Google Gmail API with OAuth authentication.
Connect your Google account via Settings > Integrations > Google > Connect. The OAuth flow requests Gmail read, send, and modify permissions. No app passwords or CLI tools needed.
Search Gmail messages using full Gmail search syntax (same as the Gmail search bar).
Parameters:
query (required): Gmail search query (e.g. is:unread, from:alice@example.com newer_than:7d, subject:deploy)maxResults (optional): Maximum number of messages to return (default: 20, max: 100)Returns: Message IDs, subjects, senders, dates, and snippets.
Read the full body of a Gmail message by its message ID.
Parameters:
messageId (required): Gmail message ID from gmail_search resultsReturns: Full email with from, to, subject, date, body, and labels.
Send a plain text email via Gmail.
Parameters:
to (required): Recipient email addresssubject (required): Email subject linebody (required): Email body (plain text)cc (optional): CC recipient email addressbcc (optional): BCC recipient email addressModify labels on a Gmail message (mark read/unread, archive, star).
Parameters:
messageId (required): Gmail message IDaddLabels (optional): Label IDs to add (e.g. ['STARRED', 'UNREAD'])removeLabels (optional): Label IDs to remove (e.g. ['UNREAD', 'INBOX'])is:unread — All unread messagesis:starred — Starred messagesfrom:alice@example.com — From a specific sendersubject:meeting — Subject contains "meeting"newer_than:7d — Last 7 dayshas:attachment — Messages with attachmentsin:inbox — Inbox onlylabel:important — Important messages