# Mimecast (oci · ghcr.io/wyre-technology/mimecast-mcp:v1.3.5)

MCP server for Mimecast email security: message queue, held messages, domains, and threats.

- Trust score: 41/100 (low)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-22

## Components

- oci · `ghcr.io/wyre-technology/mimecast-mcp:v1.3.5`: 41/100 (this document), [markdown](https://verifymcp.io/servers/wyre-technology-mimecast-mcp/ghcr-io-wyre-technology-mimecast-mcp-v1-3-5.md), [page](https://verifymcp.io/servers/wyre-technology-mimecast-mcp/ghcr-io-wyre-technology-mimecast-mcp-v1-3-5)

## Channel facts

- Registry: `oci`
- Package: `ghcr.io/wyre-technology/mimecast-mcp:v1.3.5`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-22.

- **Supply Chain Security**: 0/100
  - Malware scan not yet available for this package.
  - Known CVEs could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
  - Install-script risk not yet assessed.
  - Dependency health could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (Apache-2.0).
  - Actively maintained (last published 1 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 85/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 796 tokens (~72/item across 11 items; 10 tools + 1 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.
  - Supports UI / widget rendering.

**Unverified: 2 categories.** Categories scored 0 because we could not verify them: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add wyre-technology-mimecast-mcp -- docker run --rm -i ghcr.io/wyre-technology/mimecast-mcp:v1.3.5
```

### Codex

```bash
codex mcp add wyre-technology-mimecast-mcp -- docker run --rm -i ghcr.io/wyre-technology/mimecast-mcp:v1.3.5
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "wyre-technology-mimecast-mcp": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/mimecast-mcp:v1.3.5"
      ],
      "enabled": true
    }
  }
}
```

### Hermes

```yaml
mcp_servers:
  wyre-technology-mimecast-mcp:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/wyre-technology/mimecast-mcp:v1.3.5"]
```

### Other

```json
{
  "mcpServers": {
    "wyre-technology-mimecast-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/mimecast-mcp:v1.3.5"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-20 (score 41)

First indexed and scored.

## MCP tools (10)

### `mimecast_navigate` (~110 tokens)

Discover available Mimecast tools by domain. Returns tool names and descriptions for the selected domain. All tools are callable at any time — this is a help/discovery aid, not a prerequisite.

Input parameters:

- `domain` (string, required): The domain to explore: - messages: Message tracking and management - find, hold, release email messages - threats: Threat detection and incident management - TTP logs, threat indicators, and security…

### `mimecast_status` (~22 tokens)

Show credentials status and available domains. All tools are always available.

### `mimecast_find_message` (~173 tokens)

Search for email messages using Mimecast message tracking. Filter by sender, recipient, subject, date range, or delivery status.

Input parameters:

- `from_date` (string): Start date-time in ISO 8601 format (e.g. 2026-03-01T00:00:00Z)
- `page_size` (number): Number of results to return (default: 50, max: 100)
- `page_token` (string): Pagination token for next page
- `recipient_address` (string): Filter by recipient email address
- `sender_address` (string): Filter by sender email address
- `status` (string): Filter by message delivery status
- `to_date` (string): End date-time in ISO 8601 format
- `value` (string): Keyword search across message fields

### `mimecast_get_message_info` (~45 tokens)

Get detailed metadata for a specific message by its Mimecast ID, including headers, routing information, and rejection details.

Input parameters:

- `id` (string, required): Mimecast message ID

### `mimecast_hold_message` (~52 tokens)

Place a message on hold in the Mimecast gateway to prevent delivery while under review.

Input parameters:

- `id` (string, required): Mimecast message ID to hold
- `reason` (string): Reason for holding the message

### `mimecast_release_message` (~39 tokens)

Release a held message from the Mimecast gateway to allow delivery to the recipient.

Input parameters:

- `id` (string, required): Mimecast message ID to release

### `mimecast_get_threat_incidents` (~81 tokens)

Get threat remediation incidents from Mimecast. Returns incidents where malicious content was detected and remediation actions were taken.

Input parameters:

- `page_size` (number): Number of results (default: 50)
- `page_token` (string): Pagination token for next page
- `status` (string): Filter by incident status (e.g. open, closed)

### `mimecast_get_ttp_logs` (~111 tokens)

Get Targeted Threat Protection logs. Retrieve URL click logs, attachment sandbox results, or impersonation protection hits.

Input parameters:

- `from_date` (string): Start date-time in ISO 8601 format
- `page_size` (number): Number of results (default: 50)
- `page_token` (string): Pagination token for next page
- `to_date` (string): End date-time in ISO 8601 format
- `type` (string, required): Type of TTP log to retrieve

### `mimecast_get_audit_events` (~112 tokens)

Retrieve Mimecast audit log entries. Useful for compliance reviews and investigating administrative changes.

Input parameters:

- `categories` (array): Filter by event categories (e.g. ["administration", "policy"])
- `from_date` (string): Start date-time in ISO 8601 format
- `page_size` (number): Number of results (default: 50)
- `page_token` (string): Pagination token for next page
- `to_date` (string): End date-time in ISO 8601 format

### `mimecast_get_queue_status` (~33 tokens)

Get the current email delivery queue status from Mimecast, including counts and ages of queued inbound and outbound messages.

## Diagnostics

Captured diagnostic sections: Provenance. The full working is on the page: https://verifymcp.io/servers/wyre-technology-mimecast-mcp/ghcr-io-wyre-technology-mimecast-mcp-v1-3-5#diagnostics

## Score history

- 2026-08-22: 41
- 2026-08-21: 41
- 2026-08-20: 41

## Links

- Repository: https://github.com/wyre-technology/mimecast-mcp
- Changelog RSS feed: https://verifymcp.io/servers/wyre-technology-mimecast-mcp/ghcr-io-wyre-technology-mimecast-mcp-v1-3-5.xml
- Changelog JSON feed: https://verifymcp.io/servers/wyre-technology-mimecast-mcp/ghcr-io-wyre-technology-mimecast-mcp-v1-3-5.json
- HTML version of this page: https://verifymcp.io/servers/wyre-technology-mimecast-mcp/ghcr-io-wyre-technology-mimecast-mcp-v1-3-5
