Mailchimp MCP Server
Provides read-only access to the Mailchimp Marketing API v3, with tools for retrieving audiences, members, campaigns, reports, automations, templates, landing pages, e-commerce data, and account information.
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., "@Mailchimp MCP ServerShow me the click rate for my latest campaign"
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.
Mailchimp MCP Server
A Model Context Protocol (MCP) server exposing read-only access to the Mailchimp Marketing API v3 through 18 tools covering 103 endpoints — audiences, members, campaigns, reports, automations, templates, landing pages, e-commerce, and account administration.
Tools are grouped by domain and dispatch on an action parameter, so the full API surface stays reachable while the tool count stays low enough for hosts that cap actions per agent (Microsoft Copilot Studio among them).
Every tool issues a GET. The server has no code path that can create, modify, or delete anything in your Mailchimp account, or send email.
Usage
{
"mcpServers": {
"mailchimp": {
"command": "npx",
"args": ["@agentx-ai/mailchimp-mcp-server"],
"env": {
"MAILCHIMP_API_KEY": "your-api-key-here"
}
}
}
}Related MCP server: Mailchimp MCP Server
Local installation
npm install # installs deps and builds
npm run dev # build + open the MCP InspectorOther scripts: npm run build (compile), npm start (raw stdio server), npm run watch (recompile on change), npm run inspector (Inspector against the existing build).
Configuration
MAILCHIMP_API_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx-us14A .env file in the project root is read automatically. The key must keep its data-center suffix (-us1, -us14, …) — it determines the API hostname. The server refuses to start without a valid suffix rather than failing later with an opaque DNS error.
Transports
Both transports serve the identical tool surface from one server definition (src/server.ts), so they cannot drift apart.
stdio (default) — for Claude Desktop, Cursor, the MCP Inspector, and any local client:
npm startStreamable HTTP — for network-based hosts such as Microsoft Copilot Studio:
npm run start:http # or: node build/index.js --httpHTTP mode also activates automatically when PORT is set, which is how Azure App Service, Container Apps, and most PaaS hosts signal that they expect a listener.
Variable | Default | Purpose |
| — | Required. Must keep its data-center suffix. |
|
| HTTP port. Setting it enables HTTP mode. |
|
| Bind address. |
|
| Endpoint path. |
| — | When set, |
|
| Set to |
GET /health returns server name, version, endpoint path, and whether auth is required — use it as your platform's health probe.
Set
MCP_AUTH_TOKENbefore exposing this server publicly. The endpoint grants read access to your entire Mailchimp account, and there is no other access control in front of it. The server logs a warning at startup when the token is unset. Compare is constant-time, so the token is not vulnerable to timing analysis.
Sessions are stateless: each request gets its own server and transport instance, so the process scales horizontally with no shared session store.
Microsoft Copilot Studio
Deploy this server somewhere with a public HTTPS URL (Azure Container Apps, App Service, or any container host). Set
MAILCHIMP_API_KEYandMCP_AUTH_TOKENin its environment.Confirm
https://<your-host>/healthreturns{"status":"ok"}.In Copilot Studio, add a new tool → Model Context Protocol, pointing at
https://<your-host>/mcp.Configure authentication as a bearer token and supply the same value as
MCP_AUTH_TOKEN.All 18 tools appear as agent actions. The tool count is deliberately kept low because Copilot Studio limits actions per agent — the
actionparameter is what preserves access to all 103 endpoints.
Tool catalog
Tool | Actions | Covers |
| 11 | ping, account overview, authorized apps, verified domains, batches, connected sites, chimp chatter |
| 2 | members, campaigns |
| 12 | lists, growth history, activity, client stats, location stats, abuse reports, signup forms, webhooks, merge fields |
| 7 | segments, segment members, interest categories, interests |
| 9 | members, tags, activity, activity feed, events, notes, goals |
| 5 | campaigns, content, feedback, send checklist |
| 16 | summary, advice, opens, clicks, link clickers, unsubscribes, abuse, sent-to, domain performance, locations, eepurl, sub-reports, email activity, product activity |
| 7 | workflows, emails, queues, removed subscribers |
| 3 | templates, default content |
| 6 | File Manager files and folders, campaign folders |
| 3 | pages, content |
| 3 | conversations, messages |
| 3 | stores, account-wide orders |
| 4 | products, variants |
| 3 | orders, line items |
| 2 | customers |
| 3 | carts, line items |
| 4 | promo rules, promo codes |
Each tool's description lists its actions and what each one needs. Run npm run dev and open the Inspector's Tools tab to see the full schemas.
Conventions
Every tool follows the same shape, so the catalog above is enough to predict any call:
actionis always required and selects the data to retrieve. An invalid action returns an error listing the valid ones.List-style actions return a summary envelope —
{ total_items, returned, items: [...] }— where each item is trimmed to identifying fields. This keeps a 1000-row page from flooding the model's context, whiletotal_itemstells the caller whether more rows exist.Detail-style actions (
details,summary, single-record lookups) return the complete raw Mailchimp record, unmodified.Paging: collection tools accept
count(1–1000, default 1000) andoffset. To read an audience larger than 1000, call repeatedly withoffset0, 1000, 2000, … untilreturnedis less thancount.IDs: start at
mailchimp_audiences action=list,mailchimp_campaigns action=list, ormailchimp_stores action=list.mailchimp_search action=membersis the fastest route to asubscriber_hash.Missing arguments are rejected before any HTTP request, with a message naming exactly which ones the chosen action needs.
Development
npm run build # tsc
npm run watch # tsc --watch
npm run inspector # MCP Inspector against build/index.jsThere is no test suite in this repository.
Known gaps
Customer journeys are not readable. Mailchimp does not expose them via the Marketing API; the automation tools cover classic automations only.
Endpoint coverage is based on the documented Marketing API v3 surface and has not been exercised against a live account for all 103 actions. The transport, dispatch, and validation layers are verified; individual endpoint URLs are not.
No deployment manifests. There is no Dockerfile or IaC in this repo; hosting is left to you.
API reference
https://mailchimp.com/developer/marketing/api/
License
MIT.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityFmaintenanceA Model Context Protocol server that provides read-only access to Mailchimp's Marketing API for comprehensive email marketing data retrieval.3822811MIT
- AlicenseBqualityCmaintenanceA production-grade MCP server that integrates with the Mailchimp Marketing API to manage campaigns, audiences, members, and reports. It provides 28 specialized tools for automating marketing tasks such as sending emails, managing subscriber tags, and analyzing performance data.711MIT
- Flicense-qualityDmaintenanceEnables interaction with the Mailchimp API for managing campaigns, lists, templates, reports, and automations through natural language.3
- FlicenseBqualityDmaintenanceMCP server for Mailchimp Marketing API v3 with 72 tools covering audiences, campaigns, templates, reports, and more.72
Related MCP Connectors
Mailchimp MCP Pack — manage audiences, campaigns, and members via Mailchimp Marketing API.
Klaviyo MCP Pack — wraps the Klaviyo API for email marketing
ActiveCampaign MCP Pack — email marketing + CRM (API v3).
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- 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/aakarsh1t/MailChimp_MCP-'
If you have feedback or need assistance with the MCP directory API, please join our Discord server