Connects Claude to your Mimecast email security environment through their API. You get access to message tracking, held message queues, domain management, and threat intelligence data. Built by Wyre Technology as part of their MSP-focused Claude plugin ecosystem. Requires Mimecast API credentials (client ID, secret, and region). Useful if you're managing email security for multiple clients and want to investigate suspicious messages, clear quarantine queues, or pull threat intel without switching between dashboards. Ships as an npm package with Docker support and works over stdio transport.
A Model Context Protocol (MCP) server for Mimecast email security. Enables AI assistants to track messages, investigate threats, manage email queues, and access threat intelligence data.
This is a Model Context Protocol (MCP) server that connects Claude (or any MCP-compatible AI) to your Mimecast environment.
Part of the MSP Claude Plugins ecosystem — a growing suite of AI integrations for the MSP stack. Built by MSPs, for MSPs.
npm install @wyre-technology/mimecast-mcp
Set the following environment variables:
| Variable | Required | Description |
|---|---|---|
MIMECAST_CLIENT_ID | Yes | Your Mimecast API client ID |
MIMECAST_CLIENT_SECRET | Yes | Your Mimecast API client secret |
MIMECAST_REGION | Yes | Your Mimecast region: us, eu, de, au, za, ca |
MCP_TRANSPORT | No | Transport mode: stdio (default) or http |
Add to your Claude Desktop claude_desktop_config.json:
{
"mcpServers": {
"mimecast-mcp": {
"command": "npx",
"args": ["@wyre-technology/mimecast-mcp"],
"env": {
"MIMECAST_CLIENT_ID": "your-mimecast-client-id"
"MIMECAST_CLIENT_SECRET": "your-mimecast-client-secret"
"MIMECAST_REGION": "your-mimecast-region"
}
}
}
}
claude mcp add mimecast-mcp \
-e MIMECAST_CLIENT_ID=your-value \
-e MIMECAST_CLIENT_SECRET=your-value \
-e MIMECAST_REGION=your-value \
-- npx -y @wyre-technology/mimecast-mcp
docker build -t mimecast-mcp .
docker run \
-e MIMECAST_CLIENT_ID=your-value \
-e MIMECAST_CLIENT_SECRET=your-value \
-e MIMECAST_REGION=your-value \
-p 8080:8080 mimecast-mcp
Message tracking and investigation
Email queue management
Threat intelligence and detection data
# Clone the repository
git clone https://github.com/wyre-technology/mimecast-mcp.git
cd mimecast-mcp
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test
Contributions are welcome! Please see CONTRIBUTING.md if present, or open an issue to discuss changes.
Licensed under the Apache License, Version 2.0. See LICENSE for details.
MIMECAST_CLIENT_ID*Mimecast API 2.0 client ID
MIMECAST_CLIENT_SECRET*secretMimecast API 2.0 client secret
MIMECAST_REGIONdefault: usMimecast region: 'us' (default), 'eu', 'de', 'au', 'za', 'ca', 'usb', 'usbe', or 'gb'
MCP_TRANSPORTdefault: stdioTransport mode for the server. Set to 'stdio' for local CLI use; the image defaults to 'http' for gateway hosting.
AUTH_MODEdefault: envCredential source: 'env' reads vars locally, 'gateway' expects header injection from the WYRE MCP Gateway.
LOG_LEVELdefault: infoLog verbosity: debug, info, warn, error
io.github.mindstone/mcp-server-microsoft-teams
com.mintmcp/outlook-email
helbertparanhos/resend-email-mcp
marlinjai/email-mcp
io.github.mindstone/mcp-server-email-imap
io.github.osamahassouna/email-playbook-mcp