Server data from the Official MCP Registry
MCP server for Mimecast email security: message queue, held messages, domains, and threats.
MCP server for Mimecast email security: message queue, held messages, domains, and threats.
This is a well-structured MCP server for Mimecast email security with appropriate authentication, proper credential handling, and reasonable permission scoping. The code demonstrates good security practices with lazy-loaded client initialization, credential change detection, and separate handling for stdio vs. HTTP transports. Minor code quality observations exist but do not constitute security vulnerabilities. Supply chain analysis found 2 known vulnerabilities in dependencies (0 critical, 1 high severity).
7 files analyzed · 7 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: MIMECAST_CLIENT_ID
Environment variable: MIMECAST_CLIENT_SECRET
Environment variable: MIMECAST_REGION
Environment variable: MCP_TRANSPORT
Environment variable: AUTH_MODE
Environment variable: LOG_LEVEL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-wyre-technology-mimecast-mcp": {
"env": {
"AUTH_MODE": "your-auth-mode-here",
"LOG_LEVEL": "your-log-level-here",
"MCP_TRANSPORT": "your-mcp-transport-here",
"MIMECAST_REGION": "your-mimecast-region-here",
"MIMECAST_CLIENT_ID": "your-mimecast-client-id-here",
"MIMECAST_CLIENT_SECRET": "your-mimecast-client-secret-here"
},
"args": [
"-y",
"@wyre-technology/mimecast-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
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.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.