Mailjet MCP Server
OfficialClick 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., "@Mailjet MCP ServerList my contact lists and their subscriber counts."
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.
Mailjet MCP Server
Overview
This project provides a Model Context Protocol (MCP) server for the Mailjet API, enabling compatible AI agents (e.g. Claude Desktop) to interact with Mailjet's contact, campaign, segmentation, statistics, workflow (and more) APIs through a standardized tool interface.
Related MCP server: Sequenzy MCP Server
Quick Start
Execution through NPX
The project is available on NPM and can be executed through NPX.
In order to start the server locally, simply run the following command:
MAILJET_API_KEY="YOUR_api_key:YOUR_secret_key" npx mailjet-mcp-serverMost of the time, you can choose to take advantage your AI desktop app and link Mailjet MCP directly to it. In this case please add the following MCP config:
"mcpServers": {
"mailjet": {
"command": "npx",
"args": [
"-y",
"@mailjet/mailjet-mcp-server"
],
"env": {
"MAILJET_API_KEY": "YOUR_api_key:YOUR_secret_key"
}
}
}Manual Installation
Clone the repository:
git clone https://github.com/mailgun/mailjet-mcp-server.git cd mailjet-mcp-serverInstall dependencies and build:
pnpm installConfigure Claude Desktop:
Create or modify the config file:
MacOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%/Claude/claude_desktop_config.json
Then start the MCP server:
node src/mailjet-mcp.jsAdd the following configuration:
{
"mcpServers": {
"mailjet": {
"command": "node",
"args": ["CHANGE/THIS/PATH/TO/mailjet-mcp-server/src/mailjet-mcp.js"],
"env": {
"MAILJET_API_KEY": "YOUR_api_key:YOUR_secret_key"
}
}
}
}Supported environment variables
The following environment variables are currently supported by the server:
MAILJET_API_KEY="your_api_key:your_secret_key" # REQUIRED, used for authenticating your account
MAILJET_API_REGION="eu" # OPTIONAL, used to change to the EU servers, if desiredTesting
Run the local test suite with:
NODE_ENV=test pnpm testSample Prompts with Claude
Find contacts information
Which of my contacts lists has the most subscribers?Fetch and Visualize Sending Statistics
Would you be able to make a chart with email delivery statistics for the past week?Debugging
The MCP server communicates over stdio, please refer to Debugging section of the Model Context Protocol.
Publishing
This package is published on the Mailjet NPM registry. The Mailjet team is responsible for publishing new package updates. Feel free to create an issue if you noticed any divergence between the Github version and the NPM package available.
License
This project is licensed under the Apache License 2.0. See LICENSE for details.
Contributing
We welcome contributions! Please feel free to submit a Pull Request.
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
- 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/mailgun/mailjet-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server