by mailmodo
Mailmodo — an email marketing platform offering AMP email and interactive email to boost conversions with powerful email
Integrates with Mailmodo email marketing platform to manage campaigns, templates, and subscriber data programmatically.
Mailmodo is an official MCP server published by mailmodo that provides AI assistants with tools and capabilities via the Model Context Protocol. Mailmodo — an email marketing platform offering AMP email and interactive email to boost conversions with powerful email It is categorized under communication, developer tools.
You can install Mailmodo in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
GPL-3.0
Mailmodo is released under the GPL-3.0 license.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
We evaluated Mailmodo against two servers with overlapping tools; this profile had the clearer scope statement.
We evaluated Mailmodo against two servers with overlapping tools; this profile had the clearer scope statement.
Mailmodo is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Strong directory entry: Mailmodo surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Mailmodo reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Useful MCP listing: Mailmodo is the kind of server we cite when onboarding engineers to host + tool permissions.
Useful MCP listing: Mailmodo is the kind of server we cite when onboarding engineers to host + tool permissions.
Useful MCP listing: Mailmodo is the kind of server we cite when onboarding engineers to host + tool permissions.
Mailmodo reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Mailmodo reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
showing 1-10 of 29
This is a TypeScript project that implements a Message Control Protocol (MCP) server for Mailmodo integration with Claude Desktop and other MCP supported client.
<a href="https://glama.ai/mcp/servers/@mailmodo/mailmodo-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@mailmodo/mailmodo-mcp/badge" alt="Mailmodo MCP server" /> </a>To install Mailmodo Integration Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @mailmodo/mailmodo-mcp --client claude
git clone https://github.com/mailmodo/mailmodo-mcp.git
cd mailmodo-mcp
npm install
To compile the TypeScript code to JavaScript, run:
npm run build
This will create a dist directory containing the compiled JavaScript files.
After building, you can run the project using:
node dist/index.js
Or use the npm script:
npm start
To configure this project with Claude Desktop, add the following configuration to your Claude Desktop settings:
{
"mcpServers": {
"mailmodo": {
"command": "node",
"args": [
"/path/to/your/mailmodo-mcp/dist/index.js"
]
}
}
}
{
"mcpServers": {
"mailmodo": {
"command": "docker",
"args": [
"run",
"--platform",
"linux/amd64",
"-i",
"--rm",
"-e",
"MAILMODO_API_KEY",
"avneesh001/mailmodo-mcp"
],
"env": {
"MAILMODO_API_KEY": "<GET MAILMODO KEY from https://manage.mailmodo.com/app/settings/apikey and insert here>"
}
}
}
}
{
"mcpServers": {
"mailmodo": {
"command": "npx",
"args": [
"-y",
"@mailmodo/mcp"
],
"env": {
"MAILMODO_API_KEY": "<GET MAILMODO KEY from https://manage.mailmodo.com/app/settings/apikey and insert here>"
}
}
}
}
{
"mcpServers": {
"mailmodo": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.app.mailmodo.com/mcp",
"--header",
"mmApiKey:${MAILMODO_API_KEY}"
],
"env": {
"MAILMODO_API_KEY": "<GET MAILMODO KEY from https://manage.mailmodo.com/app/settings/apikey and insert here>"
}
}
}
}
Make sure to adjust the file path in the args array to match your local project directory.
To run the project in development mode with automatic recompilation:
ts-node and nodemon as dev dependencies:npm install --save-dev ts-node nodemon
{
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
}
}
npm run dev
mailmodo-mcp/
├── src/ # TypeScript source files
├── dist/ # Compiled JavaScript files
├── package.json # Project dependencies and scripts
└── tsconfig.json # TypeScript configuration
The Mailmodo MCP server provides several tools and resources for interacting with Mailmodo's functionality. Here's a comprehensive list:
Mailmodo Templates (mailmodo://templates)
Mailmodo Campaigns (mailmodo://campaigns)
Mailmodo Contact Lists (mailmodo://contact-lists)
User Details
userDetailsemail (string): Email address of the contactCampaign Report Tool
MailmodoCampainReportToolcampaignId (UUID): ID of the campaignfromDate (YYYY-MM-DD): Start date for the reporttoDate (YYYY-MM-DD): End date for the reportCurrent DateTime
currentDateTimeSend Event
sendEventemail (string): Contact's email addressevent_name (string): Name of the eventts (number, optional): Timestampevent_properties (object, optional): Additional event propertiesContact List Management
Add Contact to List
addContactToListemail (string): Contact's emaillistName (string): Name of the listdata (object, optional): Contact propertiesBulk Add Contacts
addBulkContactToListlistName (string): Name of the listvalues (array): Array of contact objectsRemove Contact from List
removeContactFromListemail (string): Contact's emaillistName (string): Name of the listContact Status Management
Unsubscribe Contact
unsubscribeContactemail (string): Contact's emailResubscribe Contact
resubscribeContactemail (string): Contact's emailArchive Contact
archiveContactemail (string): Contact's emailCampaign Management
Send Email Campaign
sendEmailToCampaigncampaignId (string): Campaign IDemail (string): Recipient's emailBroadcast Campaign
broadcastCampaignToListcampaignId (string): Campaign IDlistId (string): Target list IDPrerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.