ワンクリックで
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 ページを確認してインストールできます。
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.
SOC 職業分類に基づく
| 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