mindmapio

mindmapio is a skill for Claude Code, Codex from MohGanji/mindmapio-mcp. It costs 89 tokens per session (3,110 once invoked), scanned A, original, MIT.

A skill for controlling Mindmap.io maps through its HTTP API, which is a web interface for sending requests to a service. It can read maps, create node trees, and run operations that expand or regenerate nodes.

In plain words
What is it for?
Reading maps, creating and growing branches, submitting prompts to nodes, retrying operations, and stopping them.
Why use it?
It lets an agent work with mind maps directly from authenticated requests instead of requiring the Mindmap.io MCP server.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/mohganji/mindmapio-mcp/mindmapio
Any agent
npx skills add MohGanji/mindmapio-mcp --skill mindmapio
Clone the repo
git clone --depth 1 https://github.com/MohGanji/mindmapio-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mindmapio

README.md
[![agentmods](https://agentmods.dev/badge/skills/mohganji/mindmapio-mcp/mindmapio.svg)](https://agentmods.dev/skills/mohganji/mindmapio-mcp/mindmapio)
Your own site
<a href="https://agentmods.dev/skills/mohganji/mindmapio-mcp/mindmapio"><img src="https://agentmods.dev/badge/skills/mohganji/mindmapio-mcp/mindmapio.svg" alt="Measured on agentmods" height="20"></a>
Per session 89 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,110 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00089 $0.03110
Opus 5 $0.00044 $0.01555
Sonnet 5 $0.00018 $0.00622
Haiku 4.5 $0.00009 $0.00311

Measured 5d ago against content hash a08a9938fad5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

mindmapio scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

A reusable curl alias for the examples below:
skills/mindmapio/SKILL.md · 262 lines

How it starts

The opening of the file, as written. The whole thing — 262 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Drive Mindmap.io maps via the node API

This skill teaches you to drive Mindmap.io maps by calling its HTTP node API directly. It is the alternative to the mindmapio-mcp server: same primitives, no MCP client required, just authenticated HTTP calls.

The API is the authoritative contract — match the shapes in the examples exactly. A map's data is a tree of nodes, the same shape every read returns, with camelCase fields like nodeType and parentId. The single-node write endpoints take their own snake_case fields like node_type.

Setup

Every call sends a personal access token as a bearer header. Generate the token once in Mindmap.io: settings → API access. It acts as its user; regenerating it immediately revokes the old one.

export MINDMAP_API_TOKEN="<your personal access token>"
export MINDMAP_API_BASE_URL="https://mindmap.io"   # optional, this is the default

Never print, echo, or commit the token. Send it on every request:

Authorization: Bearer $MINDMAP_API_TOKEN

A reusable curl alias for the examples below:

mm() { curl -sS -H "Authorization: Bearer $MINDMAP_API_TOKEN" \
  -H "Content-Type: application/json" "$MINDMAP_API_BASE_URL$@"; }

Primitives

IDs are unprefixed everywhere. You mint node ids client-side, so you can reference a node id you chose before it is persisted.

Node content is sent as messages: a UIMessage array (Vercel AI SDK shape). Each message is {role, parts} and each part is {type: "text", text}. A node's body — a prompt, a data node, a note's source turn — is a single user message with one or more text parts.

Read

List mapsGET /api/mindmaps → array of {id, title, kind, created_at, updated_at}, newest first.

mm /api/mindmaps

Read a full mapGET /api/mindmaps/{id}{id, title, kind, user_id, data} where data is {rootId, selectedId, nodes} and nodes maps id → node.

mm /api/mindmaps/MAP_ID

Read one nodeGET /api/mindmaps/{mapId}/nodes/{nodeId} → a SubtreeNode {node, children} with children: []. The node's own children array still lists child ids for navigation.

Read the full file on GitHub · 262 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 262 lines · 89 tokens per session scan A a08a9938fad5

Subscribe to this mod's changes

mindmapio is a skill published in the GitHub repository MohGanji/mindmapio-mcp (0 stars, last pushed 2mo ago), licensed MIT. It adds 89 tokens to every session and 3,110 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens