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.
npx agentmods add skills/mohganji/mindmapio-mcp/mindmapionpx skills add MohGanji/mindmapio-mcp --skill mindmapiogit clone --depth 1 https://github.com/MohGanji/mindmapio-mcpWrote 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.
[](https://agentmods.dev/skills/mohganji/mindmapio-mcp/mindmapio)<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>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.
| Model | Per session | Once 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 |
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: 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 maps — GET /api/mindmaps → array of {id, title, kind, created_at, updated_at}, newest first.
mm /api/mindmaps
Read a full map — GET /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 node — GET /api/mindmaps/{mapId}/nodes/{nodeId} → a SubtreeNode {node, children} with children: []. The node's own children array still lists child ids for navigation.
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.
- 5d ago First seen · 262 lines · 89 tokens per session scan A a08a9938fad5
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.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
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…
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…
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.
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…
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…