# app.cloudmindmaps/mindmaps (npm · cloudmindmaps-mcp)

Create and read mind maps on CloudMindMaps from Claude and other AI assistants.

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

## Components

- npm · `cloudmindmaps-mcp`: 66/100 (this document), [markdown](https://verifymcp.io/servers/app-cloudmindmaps-mindmaps/cloudmindmaps-mcp.md), [page](https://verifymcp.io/servers/app-cloudmindmaps-mindmaps/cloudmindmaps-mcp)

## Channel facts

- Registry: `npm`
- Package: `cloudmindmaps-mcp`
- Version: `1.1.0`
- 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-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL returned HTTP 404.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 26 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 83/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 593 tokens (~148/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.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add app-cloudmindmaps-mindmaps -- npx -y cloudmindmaps-mcp
```

### Codex

```bash
codex mcp add app-cloudmindmaps-mindmaps -- npx -y cloudmindmaps-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "app-cloudmindmaps-mindmaps": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "cloudmindmaps-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add app-cloudmindmaps-mindmaps --command npx --arg -y --arg cloudmindmaps-mcp
```

### Hermes

```yaml
mcp_servers:
  app-cloudmindmaps-mindmaps:
    command: "npx"
    args: ["-y", "cloudmindmaps-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "app-cloudmindmaps-mindmaps": {
      "command": "npx",
      "args": [
        "-y",
        "cloudmindmaps-mcp"
      ]
    }
  }
}
```

## 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-03 (score 66, +26)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Stability: unverified → 0.27
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional] Licence: MIT

### 2026-08-02 (score 40, +20)

- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] MCP protocol: unverified → pass

### 2026-07-31 (score 20, −8)

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

### 2026-07-30 (score 28, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (4)

### `create_mindmap_from_outline` (~246 tokens)

Create mind map from an outline

Create a mind map on CloudMindMaps from a simple nested outline. THIS IS THE RECOMMENDED WAY to create maps — you provide the structure as nested objects and the server generates valid .mm XML for you (correct IDs, balanced left/right branches, XML escaping). Use this whenever you're turning notes, documents, ideas, or a plan into a mind map.

Provide 'root' as the central topic with nested 'children'. Guidelines for a readable map:
\- Give the root a short, punchy central topic.
\- Aim for 2-6 top-level branches; the server auto-balances them left and right.
\- Keep it 3-4 levels deep. Split further rather than writing long node text.
\- Use 'icon' sparingly for emphasis (e.g. "idea", "warning", "yes"), and 'note' for detail that shouldn't clutter the node label.

Returns the map's shareable URL on cloudmindmaps.app.

Input parameters:

- `root` (object, required): The central topic node, with nested children forming the map.
- `title` (string, required): Title of the mind map (used for the file/name, not shown as a node).

### `create_mindmap` (~279 tokens)

Create mind map from raw .mm XML

Create a mind map on CloudMindMaps from raw CloudMindMaps XML (.mm format). Prefer create_mindmap_from_outline unless you specifically need XML features not exposed by the outline (clouds, edge styling, arrowlink connectors, richcontent HTML nodes).

Minimal XML shape:
\<map version="1.0.0">
\<node ID="ID_0" TEXT="Root Topic">
  \<node ID="ID_1" TEXT="Branch A" POSITION="right">
    <node ID="ID_2" TEXT="Detail"/>
  \</node>
  \<node ID="ID_3" TEXT="Branch B" POSITION="left"/>
\</node>
\</map>

Rules:
\- Exactly one root <node> inside <map>. Root has no POSITION.
\- Only the root's direct children take POSITION="left" or "right".
\- Every node needs a unique ID (ID_0, ID_1, ...).
\- Escape XML entities in TEXT (&amp; &lt; &gt; &quot; &apos;).
\- Optional sub-elements: <font>, <edge>, <icon BUILTIN="...">, <cloud>, <richcontent>, <arrowlink>.

Input parameters:

- `title` (string, required): Title of the mind map.
- `xml` (string, required): Valid CloudMindMaps .mm XML content.

### `list_mindmaps` (~26 tokens)

List my mind maps

List all mind maps owned by or shared with the authenticated CloudMindMaps user.

### `get_mindmap` (~42 tokens)

Get a mind map's content

Fetch the full details and .mm XML content of a mind map by its ID.

Input parameters:

- `id` (string, required): The mind map ID (16-character string).

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/app-cloudmindmaps-mindmaps/cloudmindmaps-mcp#diagnostics

## Score history

- 2026-08-03: 66
- 2026-08-02: 40
- 2026-08-01: 20
- 2026-07-31: 20
- 2026-07-30: 28
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/cloudmindmaps-mcp
- Socket report: https://socket.dev/npm/package/cloudmindmaps-mcp
- Website: https://cloudmindmaps.app/mcp
- Changelog RSS feed: https://verifymcp.io/servers/app-cloudmindmaps-mindmaps/cloudmindmaps-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/app-cloudmindmaps-mindmaps/cloudmindmaps-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/app-cloudmindmaps-mindmaps/cloudmindmaps-mcp
