← 返回 Skills 市场
flohiwg

AgentMail MCP CLI

作者 Florian Heiwig · GitHub ↗ · v1.0.3
cross-platform ✓ 安全检测通过
419
总下载
1
收藏
0
当前安装
4
版本数
在 OpenClaw 中安装
/install agentmail-mcp-cli
功能描述
Manage AI agent email accounts via AgentMail API. Create inboxes, send/receive/reply to emails, manage threads and attachments. Use for "email", "agentmail",...
使用说明 (SKILL.md)

AgentMail MCP CLI

Email management for AI agents via the AgentMail API.

Documentation: https://docs.agentmail.to Get API Key: https://agentmail.to

Prerequisites

Required:

Installation:

npm install -g openclaw-agentmail-cli

This installs the agentmail command globally.

Authentication

Set your API key (get one from agentmail.to):

# Option 1: Environment variable (recommended)
export AGENTMAIL_API_KEY="your_api_key"
agentmail inboxes list

# Option 2: CLI parameter
agentmail --api-key "your_api_key" inboxes list

Quick Reference

Inbox Management

# List all inboxes
agentmail inboxes list

# List with limit
agentmail inboxes list --limit 5

# Create a new inbox
agentmail inboxes create --display-name "My Agent"

# Create with username and domain
agentmail inboxes create --username myagent --domain agentmail.to --display-name "My Agent"

# Get inbox details
agentmail inboxes get \x3Cinbox-id>

# Delete an inbox (destructive!)
agentmail inboxes delete \x3Cinbox-id>

Thread Management

# List threads in inbox
agentmail threads list \x3Cinbox-id>

# List with options
agentmail threads list \x3Cinbox-id> --limit 10

# Filter by labels
agentmail threads list \x3Cinbox-id> --labels '["unread"]'

# Filter by date
agentmail threads list \x3Cinbox-id> --after "2024-01-01" --before "2024-12-31"

# Get thread details (includes all messages)
agentmail threads get \x3Cinbox-id> \x3Cthread-id>

Send Messages

# Send a simple email
agentmail messages send \x3Cinbox-id> \
  --to [email protected] \
  --subject "Hello" \
  --text "Email body here"

# Send to multiple recipients
agentmail messages send \x3Cinbox-id> \
  --to [email protected] \
  --to [email protected] \
  --subject "Team Update" \
  --text "Hello team..."

# Send with CC and BCC
agentmail messages send \x3Cinbox-id> \
  --to [email protected] \
  --cc [email protected] \
  --bcc [email protected] \
  --subject "Important" \
  --text "Please review..."

# Send HTML email
agentmail messages send \x3Cinbox-id> \
  --to [email protected] \
  --subject "Newsletter" \
  --html "\x3Ch1>Hello\x3C/h1>\x3Cp>HTML content\x3C/p>"

# Send with labels
agentmail messages send \x3Cinbox-id> \
  --to [email protected] \
  --subject "Outreach" \
  --text "Hello..." \
  --labels '["campaign","outbound"]'

Reply & Forward

# Reply to a message
agentmail messages reply \x3Cinbox-id> \x3Cmessage-id> \
  --text "Thank you for your email."

# Reply with HTML
agentmail messages reply \x3Cinbox-id> \x3Cmessage-id> \
  --html "\x3Cp>Thank you!\x3C/p>"

# Reply all
agentmail messages reply \x3Cinbox-id> \x3Cmessage-id> \
  --text "Replying to everyone..." \
  --reply-all

# Forward a message
agentmail messages forward \x3Cinbox-id> \x3Cmessage-id> \
  --to [email protected] \
  --text "FYI - see below"

# Forward to multiple
agentmail messages forward \x3Cinbox-id> \x3Cmessage-id> \
  --to [email protected] \
  --cc [email protected] \
  --subject "Fwd: Customer Inquiry" \
  --text "Please review"

Labels & Organization

# Add labels to a message
agentmail messages update \x3Cinbox-id> \x3Cmessage-id> \
  --add-labels '["important","needs-review"]'

# Remove labels
agentmail messages update \x3Cinbox-id> \x3Cmessage-id> \
  --remove-labels '["unread"]'

# Add and remove simultaneously
agentmail messages update \x3Cinbox-id> \x3Cmessage-id> \
  --add-labels '["processed"]' \
  --remove-labels '["unread","pending"]'

Attachments

# Get attachment details and download URL
agentmail attachments get \x3Cthread-id> \x3Cattachment-id>

Available Commands

Command Description
inboxes list List all inboxes
inboxes get \x3Cid> Get inbox details
inboxes create Create new inbox
inboxes delete \x3Cid> Delete inbox
threads list \x3Cinbox-id> List threads
threads get \x3Cinbox-id> \x3Cthread-id> Get thread with messages
messages send \x3Cinbox-id> Send new email
messages reply \x3Cinbox-id> \x3Cmsg-id> Reply to email
messages forward \x3Cinbox-id> \x3Cmsg-id> Forward email
messages update \x3Cinbox-id> \x3Cmsg-id> Update labels
attachments get \x3Cthread-id> \x3Catt-id> Get attachment

Command Options Reference

inboxes list

  • -l, --limit \x3Cn> - Max items (default: 10)
  • --page-token \x3Ctoken> - Pagination token

inboxes create

  • -u, --username \x3Cname> - Email username
  • -d, --domain \x3Cdomain> - Email domain
  • -n, --display-name \x3Cname> - Display name

threads list

  • -l, --limit \x3Cn> - Max items (default: 10)
  • --page-token \x3Ctoken> - Pagination token
  • --labels \x3Cjson> - Filter by labels (JSON array)
  • --before \x3Cdatetime> - Before date (ISO 8601)
  • --after \x3Cdatetime> - After date (ISO 8601)

messages send

  • --to \x3Cemail> - Recipient (repeatable)
  • --cc \x3Cemail> - CC recipient (repeatable)
  • --bcc \x3Cemail> - BCC recipient (repeatable)
  • -s, --subject \x3Ctext> - Subject line
  • -t, --text \x3Cbody> - Plain text body
  • --html \x3Cbody> - HTML body
  • --labels \x3Cjson> - Labels (JSON array)

messages reply

  • -t, --text \x3Cbody> - Plain text body
  • --html \x3Cbody> - HTML body
  • --reply-all - Reply to all recipients
  • --labels \x3Cjson> - Labels (JSON array)

messages forward

  • --to \x3Cemail> - Recipient (repeatable)
  • --cc \x3Cemail> - CC recipient (repeatable)
  • --bcc \x3Cemail> - BCC recipient (repeatable)
  • -s, --subject \x3Ctext> - Subject line
  • -t, --text \x3Cbody> - Plain text body
  • --html \x3Cbody> - HTML body
  • --labels \x3Cjson> - Labels (JSON array)

messages update

  • --add-labels \x3Cjson> - Labels to add (JSON array)
  • --remove-labels \x3Cjson> - Labels to remove (JSON array)

Common Workflows

Check for New Emails

# List unread threads
agentmail threads list \x3Cinbox-id> --labels '["unread"]' --limit 20

Process and Archive Email

# 1. Get thread
agentmail threads get \x3Cinbox-id> \x3Cthread-id>

# 2. Process content (your logic)

# 3. Mark as processed
agentmail messages update \x3Cinbox-id> \x3Cmessage-id> \
  --add-labels '["processed"]' \
  --remove-labels '["unread"]'

Auto-Reply Workflow

# 1. Check for emails needing reply
agentmail threads list \x3Cinbox-id> --labels '["needs-reply"]'

# 2. Get thread details
agentmail threads get \x3Cinbox-id> \x3Cthread-id>

# 3. Send reply
agentmail messages reply \x3Cinbox-id> \x3Cmessage-id> \
  --text "Thank you for reaching out. We will respond within 24 hours."

# 4. Update labels
agentmail messages update \x3Cinbox-id> \x3Cmessage-id> \
  --add-labels '["auto-replied"]' \
  --remove-labels '["needs-reply","unread"]'

Create Inbox and Send First Email

# 1. Create inbox
agentmail inboxes create --display-name "Sales Bot"
# Note the inboxId from response

# 2. Send email
agentmail messages send \x3Cnew-inbox-id> \
  --to [email protected] \
  --subject "Introduction" \
  --text "Hello! I wanted to reach out..."

Error Handling

If commands fail, check:

  1. API Key: Ensure AGENTMAIL_API_KEY is set
  2. IDs: Verify inbox/thread/message IDs exist
  3. JSON: Use proper JSON for array options: '["value"]'

Alternative: MCPorter Syntax

If the MCP compatibility is restored, you can also use MCPorter:

# List inboxes
npx mcporter call agentmail.list_inboxes

# Send message
npx mcporter call agentmail.send_message \
  inboxId:\x3Cinbox-id> \
  to:'["[email protected]"]' \
  subject:"Hello" \
  text:"Body"

Links

安全使用建议
This skill appears coherent for managing AgentMail accounts, but before installing: 1) Verify the npm package 'openclaw-agentmail-cli' and its publisher on the npm registry and inspect the GitHub repository to ensure it matches expectations. 2) Limit the AGENTMAIL_API_KEY scope and use an ephemeral or low-privilege key if possible. 3) Be aware the skill (and the agent using it) will have access to full email contents and attachments; avoid granting keys that expose unrelated accounts or data. 4) If you want to reduce risk, run the CLI in an isolated environment/container and avoid giving the agent autonomous access to sensitive inboxes until you trust the package. 5) If you need higher assurance, request the package's signed releases or a reproducible build from the maintainer.
功能分析
Type: OpenClaw Skill Name: agentmail-mcp-cli Version: 1.0.3 The skill bundle defines an OpenClaw agent skill for managing email accounts via the AgentMail API. The `SKILL.md` file provides clear instructions for installation (`npm install -g openclaw-agentmail-cli`) and usage of the `agentmail` CLI tool, which interacts with the `agentmail.to` service. All commands and instructions are directly aligned with the stated purpose of email management (creating inboxes, sending/receiving emails, managing threads and attachments). There is no evidence of prompt injection attempts against the agent, no instructions for data exfiltration, persistence, or other malicious activities. The required network and file access capabilities are inherent to its function as an email client. While the `npm` installation introduces a supply chain risk if the `openclaw-agentmail-cli` package itself were malicious, the skill bundle's content and instructions do not exhibit malicious intent.
能力评估
Purpose & Capability
The name/description (manage AgentMail inboxes, send/receive/reply, attachments) matches the declared requirements: a node-based CLI 'agentmail' and an AGENTMAIL_API_KEY. Asking for an API key and the CLI binary is proportionate to the skill's stated purpose.
Instruction Scope
SKILL.md contains only CLI usage instructions for the agentmail tool (inboxes, threads, messages, attachments). It does not instruct the agent to read unrelated files, look up unrelated credentials, or send data to endpoints beyond AgentMail (docs/homepage point to agentmail.to). Note: the skill will access email contents and attachments by design — that is expected but has privacy implications.
Install Mechanism
Install uses an npm package (openclaw-agentmail-cli) which is a common and expected distribution method for a Node CLI. npm installs are moderate risk compared with curated package managers because packages can contain arbitrary code; verify the package's publisher and contents before installing in sensitive environments.
Credentials
Only the AGENTMAIL_API_KEY is required and declared as the primary credential. That single API key is appropriate for interacting with the AgentMail API and is proportionate to the skill's capabilities.
Persistence & Privilege
The skill does not request always:true, does not modify other skills' config, and declares no system config paths. It can be invoked autonomously (platform default), which increases blast radius but is not unusual for skills and is not by itself a coherence problem.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agentmail-mcp-cli
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agentmail-mcp-cli 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.3
- Updated SKILL.md to revise and restructure the metadata format. - Moved and expanded environment variable, binary, and install details under a new `openclaw` metadata section. - Set the homepage, documentation, and repository links inside the new metadata block. - Clarified the version field at the root of the file. - No changes to core usage instructions, but internal documentation structure is now more consistent for OpenClaw/MCP compatibility.
v1.0.2
- Added repository link to metadata for improved reference and transparency. - Updated binaries requirement to only include "node" and "agentmail". - Defined a structured install block for clearer installation instructions. - Removed npx usage from instructions; now only supports global installation via npm. - Minor documentation clarifications throughout SKILL.md.
v1.0.1
- Skill name updated to `agentmail-mcp-cli` for clarity. - npm package changed to `openclaw-agentmail-cli`. - Node.js 20+ is now required. - Usage instructions updated to use `openclaw-agentmail-cli` instead of `agentmail-cli`. - Clarified required environment variables (`AGENTMAIL_API_KEY`) and bin dependencies (`node`, `npx`). - Skill documentation and metadata now reflect new CLI name and requirements.
v1.0.0
Initial release of AgentMail CLI for managing AI agent email accounts. - Manage inboxes: create, list, get details, and delete. - Send, receive, reply, and forward emails, with optional CC, BCC, HTML, and labels. - Organize and update email threads with labels and filtering options. - Handle attachments: retrieve details and download URLs. - Detailed CLI usage instructions and workflow examples included. - Supports API Key authentication through environment variable or CLI flag.
元数据
Slug agentmail-mcp-cli
版本 1.0.3
许可证
累计安装 0
当前安装数 0
历史版本数 4
常见问题

AgentMail MCP CLI 是什么?

Manage AI agent email accounts via AgentMail API. Create inboxes, send/receive/reply to emails, manage threads and attachments. Use for "email", "agentmail",... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 419 次。

如何安装 AgentMail MCP CLI?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install agentmail-mcp-cli」即可一键安装,无需额外配置。

AgentMail MCP CLI 是免费的吗?

是的,AgentMail MCP CLI 完全免费(开源免费),可自由下载、安装和使用。

AgentMail MCP CLI 支持哪些平台?

AgentMail MCP CLI 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 AgentMail MCP CLI?

由 Florian Heiwig(@flohiwg)开发并维护,当前版本 v1.0.3。

💬 留言讨论