AI-native email marketing
The IGSendMail MCP server is an open-source connector that lets AI assistants manage your email marketing through the Model Context Protocol. Ask Claude to add a subscriber, pull last week's campaign stats, or draft a newsletter to a list, and it happens in your IGSendMail account with your own API token. It is free on every plan, including the free plan.
Get your token at mail.igsendmail.com → Account → API token. Node.js 18 or newer is required for local use.
Settings → Developer → Edit Config, then add:
{
"mcpServers": {
"igsendmail": {
"command": "npx",
"args": ["-y", "igsendmail-mcp"],
"env": { "IGSENDMAIL_API_TOKEN": "your-token" }
}
}
}claude mcp add igsendmail -e IGSENDMAIL_API_TOKEN=your-token -- npx -y igsendmail-mcpSettings → MCP → Add new server, using the same command and env as Claude Desktop.
Connect to https://mcp.igsendmail.com/mcp with Authorization: Bearer your-token. The endpoint is stateless and stores nothing.
| get_account | Who you are, instance version, dashboard counts and subscriber usage against your plan |
| list_lists · get_list · create_list · add_list_field · delete_list | Mailing lists and their custom fields |
| list_subscribers · get_subscriber · find_subscriber_by_email | Read and search subscribers |
| add_subscriber · bulk_add_subscribers · update_subscriber | Write subscribers with merge-tag fields and tags, up to 1,000 per call |
| subscribe_subscriber · unsubscribe_subscriber · unsubscribe_by_email · delete_subscriber | Status changes and removal |
| add_subscriber_tag · remove_subscriber_tag | Tagging |
| list_campaigns · get_campaign | Campaigns with full statistics: sends, opens, clicks, bounces, unsubscribes, top links |
| create_campaign · update_campaign | Draft a campaign from HTML for a list. Nothing is sent |
| send_campaign · pause_campaign · resume_campaign · delete_campaign | Launch and control sending, each requiring confirmation |
| list_automations · execute_automation | Automation workflows |
| ai_subject_lines · ai_rewrite | Subject line options and copy rewriting with actions or a custom instruction; one AI credit per call |
| ai_send_time · ai_status | Best send time from your own open history; AI availability and credits remaining |
Irreversible tools require confirm: true and are flagged destructive, so your assistant asks before sending or deleting anything. Email verification tools follow with the verification API.
Unlimited contacts on every paid plan, 3,000 free emails a month to start, and an MCP server included on all of them.