
Mailmodo
OfficialIntegrates with Mailmodo email marketing platform to manage campaigns, templates, and subscriber data programmatically.
Mailmodo
What it does
- Create and send email campaigns
- Manage subscriber lists and segments
- Design email templates
- Track campaign analytics and metrics
- Automate email workflows
Best for
About Mailmodo
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.
How to install
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.
License
Mailmodo is released under the GPL-3.0 license.
mailmodo-mcp
This is a TypeScript project that implements a Message Control Protocol (MCP) server for Mailmodo integration with Claude Desktop and other MCP supported client.
Prerequisites
- Node.js (v20 or higher recommended)
- npm (comes with Node.js)
Installation
Installing via Smithery
To install Mailmodo Integration Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @mailmodo/mailmodo-mcp --client claude
Manual Installation
- Clone the repository:
git clone https://github.com/mailmodo/mailmodo-mcp.git
cd mailmodo-mcp
- Install dependencies:
npm install
Building the Project
To compile the TypeScript code to JavaScript, run:
npm run build
This will create a dist directory containing the compiled JavaScript files.
Running the Project
After building, you can run the project using:
node dist/index.js
Or use the npm script:
npm start
Claude Desktop Configuration
Local Run from Code
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"
]
}
}
}
Run from docker image
{
"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>"
}
}
}
}
Run from npx
{
"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>"
}
}
}
}
Connect via Remote Server
{
"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.
Development
To run the project in development mode with automatic recompilation:
- Install
ts-nodeandnodemonas dev dependencies:
npm install --save-dev ts-node nodemon
- Add a dev script to your package.json:
{
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
}
}
- Run the development server:
npm run dev
Project Structure
mailmodo-mcp/
├── src/ # TypeScript source files
├── dist/ # Compiled JavaScript files
├── package.json # Project dependencies and scripts
└── tsconfig.json # TypeScript configuration
Tools and Resources
The Mailmodo MCP server provides several tools and resources for interacting with Mailmodo's functionality. Here's a comprehensive list:
Resources
-
Mailmodo Templates (
mailmodo://templates)- Returns a list of all available email templates in JSON format
- MIME Type: application/json
-
Mailmodo Campaigns (
mailmodo://campaigns)- Returns a list of all campaigns in JSON format
- MIME Type: application/json
-
Mailmodo Contact Lists (
mailmodo://contact-lists)- Returns all contact lists in JSON format
- MIME Type: application/json
Tools
-
User Details
- Name:
userDetails - Description: Get all details of a contact
- Parameters:
email(string): Email address of the contact
- Name:
-
Campaign Report Tool
- Name:
MailmodoCampainReportTool - Description: Get campaign reports including open, click, and submission counts
- Parameters:
campaignId(UUID): ID of the campaignfromDate(YYYY-MM-DD): Start date for the reporttoDate(YYYY-MM-DD): End date for the report
- Name:
-
Current DateTime
- Name:
currentDateTime - Description: Get current date and time
- Parameters: None
- Name:
-
Send Event
- Name:
sendEvent - Description: Send custom events with email and event properties
- Parameters:
email(string): Contact's email addressevent_name(string): Name of the eventts(number, optional): Timestampevent_properties(object, optional): Additional event properties
- Name:
-
Contact List Management
-
Add Contact to List
- Name:
addContactToList - Description: Add a single contact to a list
- Parameters:
email(string): Contact's emaillistName(string): Name of the listdata(object, optional): Contact properties- Various optional fields for contact metadata
- Name:
-
Bulk Add Contacts
- Name:
addBulkContactToList - Description: Add multiple contacts to a list in a single operation
- Parameters:
listName(string): Name of the listvalues(array): Array of contact objects
- Name:
-
Remove Contact from List
- Name:
removeContactFromList - Description: Remove a contact from a specific list
- Parameters:
email(string): Contact's emaillistName(string): Name of the list
- Name:
-
-
Contact Status Management
-
Unsubscribe Contact
- Name:
unsubscribeContact - Description: Unsubscribe or suppress a contact
- Parameters:
email(string): Contact's email
- Name:
-
Resubscribe Contact
- Name:
resubscribeContact - Description: Resubscribe a previously unsubscribed contact
- Parameters:
email(string): Contact's email
- Name:
-
Archive Contact
- Name:
archiveContact - Description: Permanently archive a contact
- Parameters:
email(string): Contact's email
- Name:
-
-
Campaign Management
-
Send Email Campaign
- Name:
sendEmailToCampaign - Description: Trigger an email campaign with personalization
- Parameters:
campaignId(string): Campaign IDemail(string): Recipient's email- Various optional parameters for customization
- Name:
-
Broadcast Campaign
- Name:
broadcastCampaignToList - Description: Trigger campaigns to an entire contact list
- Parameters:
campaignId(string): Campaign IDlistId(string): Target list ID- Optional parameters for campaign customization
- Name:
-
License
Alternatives
Related Skills
Browse all skillsUI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.
Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: "AI SDK", "Vercel AI SDK", "generateText", "streamText", "add AI to my app", "build an agent", "tool calling", "structured output", "useChat".
Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals. Use PROACTIVELY for API documentation or developer portal creation.
Use when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.
Guide for building TypeScript CLIs with Bun. Use when creating command-line tools, adding subcommands to existing CLIs, or building developer tooling. Covers argument parsing, subcommand patterns, output formatting, and distribution.
Improve relationships with communication tools, conflict resolution, and connection ideas