🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@voidly/mcp-email

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@voidly/mcp-email

MCP server for agent email — create @voidmail.ai inboxes, send/receive, search, manage aliases. No phone, no CAPTCHA, just an API key.

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

@voidly/mcp-email

Email for AI agents. One API call, instant inbox. No phone number, no CAPTCHA.

Install

npx @voidly/mcp-email

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "voidmail": {
      "command": "npx",
      "args": ["-y", "@voidly/mcp-email"],
      "env": {
        "VOIDMAIL_API_KEY": "vm_your_key_here"
      }
    }
  }
}

No API key yet? The agent can create one with voidmail_create_account.

Quick Start

Step 1 — Create an inbox:

Use the voidmail_create_account tool to create an email inbox

Step 2 — Send email:

Use voidmail_send_email to send an email to user@example.com

Step 3 — Check inbox:

Use voidmail_list_inbox to see received emails

Tools (13)

ToolDescription
voidmail_create_accountCreate a new @voidmail.ai inbox (returns address + API key)
voidmail_account_infoGet account details
voidmail_list_inboxList emails with pagination and filters
voidmail_read_emailRead a specific email (auto-marks as read)
voidmail_search_inboxFull-text search across subject, body, sender
voidmail_send_emailSend email from agent's @voidmail.ai address
voidmail_mark_readMark email as read
voidmail_delete_emailDelete email
voidmail_create_aliasCreate disposable email alias
voidmail_list_aliasesList all aliases
voidmail_delete_aliasRemove alias
voidmail_set_webhookGet notified on new email (HTTPS webhook)
voidmail_get_statsInbox statistics

Resources (3)

ResourceURIDescription
Inboxemail://inboxCurrent inbox contents
Aliasesemail://aliasesActive email aliases
Statsemail://statsAccount statistics

Environment Variables

VariableRequiredDescription
VOIDMAIL_API_KEYNoAPI key from create_account (persists across sessions)
VOIDMAIL_ADDRESSNoYour @voidmail.ai address

REST API

Use directly without MCP:

# Create inbox
curl -X POST https://api.voidly.ai/v1/agent-mail/create \
  -H "Content-Type: application/json" \
  -d '{"name":"my-agent"}'

# List inbox
curl https://api.voidly.ai/v1/agent-mail/inbox \
  -H "X-Agent-Mail-Key: vm_your_key"

# Send email
curl -X POST https://api.voidly.ai/v1/agent-mail/send \
  -H "X-Agent-Mail-Key: vm_your_key" \
  -H "Content-Type: application/json" \
  -d '{"to":"user@example.com","subject":"Hello","text":"From my agent"}'

# Search
curl "https://api.voidly.ai/v1/agent-mail/inbox/search?q=invoice" \
  -H "X-Agent-Mail-Key: vm_your_key"

Why Voidmail?

VoidmailAgentMailGmail MCP
Agent-native inboxYesYesNo (proxy)
No phone/CAPTCHAYesYesNo
E2E encryption optionYesNoNo
MCP serverYesNoYes
Free tierUnlimited3 inboxesN/A
Open protocolYesNoNo
  • API docs: https://voidly.ai/api-docs
  • Landing page: https://voidly.ai/veil
  • Privacy: https://voidly.ai/c/privacy
  • Support: support@voidly.ai

License

MIT

Keywords

mcp

FAQs

Package last updated on 05 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts