在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用gmail
星标0
分支0
更新时间2026年1月13日 08:59
Fast Gmail access via FGP daemon (10x faster than MCP)
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Fast Gmail access via FGP daemon (10x faster than MCP)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | gmail |
| description | Fast Gmail access via FGP daemon (10x faster than MCP) |
| tools | ["gmail.inbox","gmail.unread","gmail.search","gmail.send","gmail.thread"] |
Fast Gmail integration via the FGP daemon. Provides 10x faster response times than MCP-based tools.
| Method | Description |
|---|---|
gmail.inbox | List recent emails from inbox |
gmail.unread | Get unread count and summaries |
gmail.search | Search emails by query |
gmail.send | Send an email |
gmail.thread | Get email thread by ID |
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
limit | integer | No | 10 | Maximum emails to return (1-100) |
fgp call gmail.inbox -p '{"limit": 10}'
No parameters. Returns unread count and first 10 unread email summaries.
fgp call gmail.unread
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
query | string | Yes | - | Gmail search query |
limit | integer | No | 10 | Maximum emails to return |
fgp call gmail.search -p '{"query": "from:newsletter", "limit": 5}'
Search syntax examples:
from:sender@example.com - Filter by senderto:recipient@example.com - Filter by recipientsubject:keyword - Filter by subjectis:unread - Only unread emailsafter:2025/01/01 - After datebefore:2025/12/31 - Before datehas:attachment - Has attachmentslabel:important - Has label| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
to | string | Yes | - | Recipient email address |
subject | string | Yes | - | Email subject line |
body | string | Yes | - | Email body (plain text) |
fgp call gmail.send -p '{"to": "user@example.com", "subject": "Hello", "body": "Message body"}'
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
thread_id | string | Yes | - | Thread ID from inbox/search results |
fgp call gmail.thread -p '{"thread_id": "18abc123"}'
{
"id": "18abc123",
"thread_id": "18abc123",
"from": "sender@example.com",
"subject": "Meeting tomorrow",
"date": "Mon, 13 Jan 2026 10:00:00 -0800",
"snippet": "Just a reminder about our meeting..."
}
{
"emails": [/* array of email objects */],
"count": 10,
"query": "from:newsletter" // only for search
}
{
"unread_count": 5,
"emails": [/* first 10 unread emails */]
}
{
"sent": true,
"message_id": "18abc456",
"thread_id": "18abc123"
}
{
"thread_id": "18abc123",
"messages": [/* array of messages with to/from */],
"count": 3
}
| Error | Cause | Solution |
|---|---|---|
| "Gmail API error: invalid_grant" | OAuth token expired | Re-run OAuth flow |
| "Gmail API error: 403" | Insufficient permissions | Check OAuth scopes |
| "query parameter is required" | Missing search query | Add query parameter |
| "gmail-cli failed" | Python script error | Check Python 3 installed |
Get OAuth credentials:
credentials.jsonPlace credentials:
mkdir -p ~/.fgp/auth/google
mv credentials.json ~/.fgp/auth/google/
Start daemon:
fgp start gmail
Authorize (first run only):
| Issue | Check | Fix |
|---|---|---|
| Daemon not running | fgp status gmail | fgp start gmail |
| Connection refused | Socket exists? | fgp start gmail |
| OAuth expired | Token age | Delete token, restart |
| Python not found | python3 --version | Install Python 3 |
| No credentials | ~/.fgp/auth/google/ | Add credentials.json |
Logs location: ~/.fgp/services/gmail/logs/
| Metric | FGP Gmail | Traditional MCP |
|---|---|---|
| Cold start | ~50ms | ~300-500ms |
| Warm call | ~10-30ms | N/A (always cold) |
| Batch support | Yes | No |
Tips for best performance:
limit parameter to reduce payload size