MailchimpMCP
Some utilities for developing an MCP server for the Mailchimp API
Overview
MailchimpMCP is a set of utilities designed to assist developers in creating an MCP server that interacts with the Mailchimp API.
To use MailchimpMCP, clone the repository from GitHub, install the necessary dependencies, and follow the documentation to set up your MCP server.
- Simplified utilities for Mailchimp API integration - Support for various Mailchimp API functionalities - Easy setup and configuration for developers
- Building custom applications that require Mailchimp API access.
- Automating email marketing tasks using Mailchimp.
- Integrating Mailchimp with other services or platforms.
Add to your AI client
Use these steps to connect MailchimpMCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mailchimpmcp-bryangsmith": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mailchimpmcp-bryangsmith"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mailchimpmcp-bryangsmith": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mailchimpmcp-bryangsmith"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mailchimpmcp-bryangsmith": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mailchimpmcp-bryangsmith"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mailchimpmcp-bryangsmith": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mailchimpmcp-bryangsmith"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mailchimpmcp-bryangsmith": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mailchimpmcp-bryangsmith"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mailchimpmcp-bryangsmith": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mailchimpmcp-bryangsmith"
]
}
}
}FAQ
What programming language is MailchimpMCP written in?
MailchimpMCP is written in Python.
Is MailchimpMCP free to use?
Yes! MailchimpMCP is open-source and available under the MIT license.
Where can I find the documentation?
Documentation can be found in the GitHub repository.