A command-line interface for AgentMail - manage email inboxes and messages from your terminal.
# Install globally
npm install -g @stepandel/agentmail-cli
# Or run directly with npx
npx @stepandel/agentmail-cliSet your API key using one of these methods:
Option 1: Environment variable (recommended for CI/CD)
export AGENTMAIL_API_KEY=your-api-keyOption 2: Config file
agentmail config set-key your-api-keyThe config file is stored at ~/.agentmail/config.json.
agentmail config showCreate an inbox:
# Create with auto-generated email
agentmail inbox create
# Create with custom domain
agentmail inbox create --domain example.com
# Create with specific username
agentmail inbox create --username support --domain example.com
# Create with display name
agentmail inbox create --display-name "Support Team"List all inboxes:
agentmail inbox list
# Limit results
agentmail inbox list --limit 10Get inbox details:
agentmail inbox get <inbox-id>Delete an inbox:
agentmail inbox delete <inbox-id>Send a message:
# Basic message
agentmail message send \
--from <inbox-id> \
--to recipient@example.com \
--subject "Hello" \
--text "Hello, World!"
# With HTML body
agentmail message send \
--from <inbox-id> \
--to recipient@example.com \
--subject "Hello" \
--html "<h1>Hello</h1><p>World!</p>"
# Multiple recipients
agentmail message send \
--from <inbox-id> \
--to "one@example.com,two@example.com" \
--subject "Hello" \
--text "Hello everyone!"
# With CC and BCC
agentmail message send \
--from <inbox-id> \
--to recipient@example.com \
--cc "cc1@example.com,cc2@example.com" \
--bcc hidden@example.com \
--subject "Hello" \
--text "Hello, World!"List messages in an inbox:
agentmail message list <inbox-id>
# Limit results
agentmail message list <inbox-id> --limit 20Get a specific message:
agentmail message get <inbox-id> <message-id>Delete a message:
agentmail message delete <inbox-id> <message-id>Note: Deleting a message deletes the entire thread containing that message.
All commands support a --json flag for machine-readable output:
# Human-readable (default)
agentmail inbox list
# JSON output
agentmail inbox list --jsonInbox list:
{
"count": 2,
"inboxes": [
{
"inboxId": "abc123",
"podId": "pod_xyz",
"displayName": "Support",
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z"
}
]
}Send message response:
{
"messageId": "msg_abc123",
"threadId": "thread_xyz789"
}# General help
agentmail --help
# Command-specific help
agentmail inbox --help
agentmail message --help
agentmail config --help| Variable | Description |
|---|---|
AGENTMAIL_API_KEY |
API key for authentication (takes precedence over config file) |
# 1. Configure API key
export AGENTMAIL_API_KEY=your-api-key
# 2. Create an inbox
agentmail inbox create --json | tee inbox.json
INBOX_ID=$(cat inbox.json | jq -r '.inboxId')
# 3. Send an email
agentmail message send \
--from "$INBOX_ID" \
--to customer@example.com \
--subject "Welcome!" \
--text "Thanks for signing up!"
# 4. Check for responses
agentmail message list "$INBOX_ID"# Get all messages as JSON for processing
agentmail message list "$INBOX_ID" --json | jq '.messages[] | {from, subject}'MIT