# MintMCP Docs (remote · www.mintmcp.com)

Search and read the official MintMCP documentation, the enterprise MCP gateway.

- Trust score: 67/100 (medium)
- Change this week: +4
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `www.mintmcp.com`: 67/100 (this document), [markdown](https://verifymcp.io/servers/com-mintmcp-docs/docs-mcp.md), [page](https://verifymcp.io/servers/com-mintmcp-docs/docs-mcp)

## Channel facts

- Endpoint: `https://www.mintmcp.com/docs/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.1.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, 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-03.

- **Endpoint Security**: 63/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 4 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 65/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 872 tokens (~218/item across 4 items; 4 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **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.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http com-mintmcp-docs https://www.mintmcp.com/docs/mcp
```

### Codex

```toml
[mcp_servers.com-mintmcp-docs]
url = "https://www.mintmcp.com/docs/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-mintmcp-docs": {
      "type": "remote",
      "url": "https://www.mintmcp.com/docs/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-mintmcp-docs --url https://www.mintmcp.com/docs/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-mintmcp-docs:
    url: "https://www.mintmcp.com/docs/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-mintmcp-docs": {
      "type": "http",
      "url": "https://www.mintmcp.com/docs/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## 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-02 (score 67, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 66, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 65, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 64, +1)

No change was recorded against any check on this day. Stability & Change Management went from 7 to 10. That category is still filling its 30-day observation window: 2 days of observed history at the previous scan, 3 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-27 (score 63, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 62)

First indexed and scored.

## MCP tools (4)

### `search` (~154 tokens)

Search MintMCP docs

Search the full MintMCP documentation and get back matching pages with their ids, titles, and URLs. Use this first for any MintMCP question: setup, capabilities, security, or a specific connector (Snowflake, Slack, GitHub) or feature (SCIM, SIEM export, prompt security, Coworker Agents). Then pass a result id to the fetch tool to read the page. Coverage spans architecture, enterprise controls, and per-connector setup guides.

Input parameters:

- `query` (string, required): What to look for, in natural language or keywords. Examples: "connect Snowflake", "SCIM provisioning", "block risky agent commands", "set up SSO with Okta", "Coworker Agent Slack".

Output parameters:

- `results` (array)

### `fetch` (~98 tokens)

Fetch a MintMCP docs page

Fetch the full markdown content of a MintMCP documentation page by its id. Use it after search (or list_docs) to read a page in full before answering, for example the Snowflake connector setup, the SCIM provisioning guide, or the tool governance reference. If you have a public docs URL or a slug instead of a search-result id, use get_page.

Input parameters:

- `id` (string, required): The document id returned by search or list_docs.

Output parameters:

- `id` (string)
- `metadata` (object)
- `text` (string)
- `title` (string)
- `url` (string)

### `list_docs` (~101 tokens)

List MintMCP docs

List the MintMCP documentation table of contents, grouped by category (Getting Started, Architecture, connectors, Enterprise, Agent Monitor, and more). Each entry has a page id you can pass to fetch. Use it to see what the docs cover or to browse a category before reading a page. Pass an optional category to list just that group.

Input parameters:

- `category` (string): Optional category name to filter by, e.g. "Enterprise" or "Agent Monitor".

Output parameters:

- `categories` (array)

### `get_page` (~114 tokens)

Get a MintMCP docs page

Fetch a MintMCP documentation page from a public docs URL or a slug, for example "https://www.mintmcp.com/docs/security/tool-governance" or just "security/tool-governance". Use it when a user pastes a docs link or names a page directly. It returns the same full markdown content as fetch.

Input parameters:

- `url` (string, required): A docs page URL or slug, e.g. "https://www.mintmcp.com/docs/enterprise/sso" or "enterprise/sso".

Output parameters:

- `id` (string)
- `metadata` (object)
- `text` (string)
- `title` (string)
- `url` (string)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-mintmcp-docs/docs-mcp#diagnostics

## Score history

- 2026-08-03: 67
- 2026-08-02: 67
- 2026-08-01: 66
- 2026-07-31: 66
- 2026-07-30: 65
- 2026-07-29: 64
- 2026-07-28: 63
- 2026-07-27: 63
- 2026-07-26: 62

## Links

- Remote endpoint: https://www.mintmcp.com/docs/mcp
- Changelog RSS feed: https://verifymcp.io/servers/com-mintmcp-docs/docs-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-mintmcp-docs/docs-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-mintmcp-docs/docs-mcp
