一键导入
gmail-mcp
Triage and curate a Gmail inbox by connecting to the GmailMCP server over MCP and calling its typed tools.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Triage and curate a Gmail inbox by connecting to the GmailMCP server over MCP and calling its typed tools.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Drive the real Goose desktop GUI (Electron) as an MCP client via Playwright to end-to-end test this template's MCP Apps - asserting the ui:// iframe actually renders and round-trips in a real host. Use to run, add, or debug MCP-App e2e scenarios.
Interview the user, inspect this template repo, run headless onboarding, and prune unused systems so a new project gets running quickly.
How to use the CLI, API, and MCP interfaces. Use this skill when interacting with the tool as an end user.
Cut a new release - bump the version in pyproject.toml, tag, and push to trigger PyPI publish and MCP Registry publish via GitHub Actions. Use when the user asks to release, ship a version, bump and tag, cut a hotfix, or publish to PyPI.
| name | gmail-mcp |
| description | Triage and curate a Gmail inbox by connecting to the GmailMCP server over MCP and calling its typed tools. |
GmailMCP is a Model Context Protocol (MCP) server. Use it to rank, triage, and draft replies for a Gmail inbox. The same tools are also reachable over a CLI and a plain HTTP API; behaviour is identical across all three transports.
Add the MCP server to your client, then discover its tools.
https://mcp.gmailmcp.com/mcpgmail-mcphttps://gmailmcp.com/.well-known/mcp.jsonList the available tools with the MCP tools/list method.
Call a tool with tools/call and typed JSON arguments. For example, to
triage the inbox:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "gmail_curate_inbox",
"arguments": { "limit": 3 }
}
}
The server returns structured output (e.g. threads ranked by an importance score, with a flag for whether a draft reply was prepared).
https://gmailmcp.com/llms-full.txthttps://gmailmcp.com/docshttps://github.com/Miyamura80/MCP-Template