joansongjr/clawaimail
Platform-specific configuration:
{
"mcpServers": {
"clawaimail": {
"command": "npx",
"args": [
"-y",
"clawaimail"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Email infrastructure for AI agents.
[](https://www.npmjs.com/package/clawaimail) [](https://opensource.org/licenses/MIT) [](https://clawaimail.com/docs)
---
ClawAIMail gives AI agents their own email addresses and full programmatic control over sending, receiving, and managing email. Built for developers who need reliable email primitives in agentic workflows.
@clawaimail.com address.npm install clawaimailconst { ClawAIMail } = require("clawaimail");
const client = new ClawAIMail({ apiKey: process.env.CLAWAIMAIL_API_KEY });
// Create a mailbox for your agent
const mailbox = await client.mailboxes.create({
name: "support-agent",
domain: "clawaimail.com",
});
// Send an email
await client.emails.send({
from: mailbox.address,
to: "user@example.com",
subject: "Hello from my AI agent",
text: "This email was sent by an autonomous agent.",
});
// List incoming emails
const inbox = await client.emails.list({
mailbox: mailbox.id,
unread: true,
});pip install clawaimailfrom clawaimail import ClawAIMail
client = ClawAIMail(api_key="your-api-key")
# Create a mailbox
mailbox = client.mailboxes.create(name="support-agent", domain=Loading reviews...