mtl-mailchimp-mcp
Provides tools for managing Mailchimp audiences, campaigns, content, and sending test emails, enabling workflow automation for newsletter creation and testing.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mtl-mailchimp-mcplist my recent campaigns"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mtl-mailchimp-mcp
Model Context Protocol (MCP) server for Mailchimp.
Copy or create newsletter campaigns, push HTML content, and send test emails — all from Claude Code or any MCP-compatible client.
Draft + test only. This server can list, copy, and create draft campaigns and send test emails to seed addresses. It deliberately exposes no send/schedule tool — you review the draft and hit Send in the Mailchimp UI. No accidental blasts from the CLI.
Tools
Tool | Description |
| List audiences (lists) with member counts |
| List recent campaigns, newest first |
| Get a campaign's settings, recipients, status |
| Peek at a campaign's stored HTML (truncated) |
| Copy an existing campaign into a new draft |
| Create a new draft campaign for an audience |
| Push a local HTML file as the campaign content |
| Update subject, title, preview text, sender |
| Send a test to seed addresses |
| Opens/clicks/bounces for a sent campaign |
Related MCP server: mailchimp-mcp
Setup
1. Get a Mailchimp API key
Mailchimp → Account → Extras → API keys. The key ends in a data-center suffix like -us19, which the server uses to find the right API host.
2. Configure
cp .env.example .env
# edit .env and paste your MAILCHIMP_API_KEY
poetry install3. Register with Claude Code
{
"mcpServers": {
"mtl-mailchimp": {
"command": "poetry",
"args": ["run", "python", "-m", "mtl_mailchimp_mcp"],
"cwd": "/absolute/path/to/mtl-mailchimp-mcp"
}
}
}Typical flow: reuse last month's newsletter
mailchimp_list_campaigns— find the previous issuemailchimp_replicate_campaign <id>— fresh draftmailchimp_set_content_from_file <new_id> /path/to/newsletter.html— push new HTMLmailchimp_update_settings <new_id> subject="..." preview_text="..."mailchimp_send_test <new_id>— check your inboxReview in Mailchimp and send from the UI
Note on images: Mailchimp does not rehost images. Use absolute URLs in your HTML (e.g.
https://yourdomain.com/img/...) so they render in the inbox.
Security
Your API key lives only in
.env(git-ignored) and is never logged.mailchimp_set_content_from_fileis confined toMAILCHIMP_CONTENT_DIR(or your home directory) and refuses hidden paths and secret files (keys, certs,*.env).No send/schedule capability — see SECURITY.md.
Development
poetry install
poetry run ruff check .
poetry run ruff format --check .
poetry run pytestBuilt by MusicTech Lab.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/musictechlab/mtl-mailchimp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server