Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

app.cloudmindmaps/mindmaps

NPM · CLOUDMINDMAPS-MCP · SCANNED AUG 3

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

Available components

+20 this week 66 Trust /100
Trust breakdown (6 categories)

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. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency19
  • Repository check failed: the declared repository URL returned HTTP 404. See how to fix → View diagnostics → Fail
  • Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
  • Clear OSI-approved license (MIT).Pass
  • Actively maintained (last published 26 days ago).Pass
  • Security-disclosure policy not yet verified: we couldn't inspect the source repository.Unverified
Schema Quality & AI Usability83
  • 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
  • AI-judged instruction clarity (excellent).Pass
  • 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. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · cloudmindmaps-mcp

# add to Claude Code
claude mcp add app-cloudmindmaps-mindmaps -- npx -y cloudmindmaps-mcp
# add to Codex CLI
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
    }
  }
}
# add to OpenClaw
openclaw mcp add app-cloudmindmaps-mindmaps --command npx --arg -y --arg cloudmindmaps-mcp
# ~/.hermes/config.yaml
mcp_servers:
  app-cloudmindmaps-mindmaps:
    command: "npx"
    args: ["-y", "cloudmindmaps-mcp"]
// mcp.json
{
  "mcpServers": {
    "app-cloudmindmaps-mindmaps": {
      "command": "npx",
      "args": [
        "-y",
        "cloudmindmaps-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +26
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Schema quality: unverified → excellent functional
    • Stability: unverified → 0.27 functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • Licence: MIT functional
  • 2 Aug 26 +20
    • Malware scan: unverified → pass security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • MCP protocol: unverified → pass functional
  • 31 Jul 26 −8
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −18
    • Malware scan: pass → unverified security
  • 27 Jul 26 46

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 95 packages

95 packages in the resolved dependency tree · 95 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 4 exposed · ~593 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
create_mindmap ~279

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>.

NameTypeReqDescription
titlestringyesTitle of the mind map.
xmlstringyesValid CloudMindMaps .mm XML content.

No output schema declared.

No examples provided.

create_mindmap_from_outline ~246

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.

NameTypeReqDescription
rootobjectyesThe central topic node, with nested children forming the map.
titlestringyesTitle of the mind map (used for the file/name, not shown as a node).

No output schema declared.

No examples provided.

get_mindmap ~42

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

NameTypeReqDescription
idstringyesThe mind map ID (16-character string).

No output schema declared.

No examples provided.

list_mindmaps ~26

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

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.