Skip to main content
Glama

Mind Map

render_mindmap
Read-onlyIdempotent

Render an interactive MCP app mind map when the user needs hierarchical structure shown visually instead of as prose. Use it for breaking down ideas, plans, study material, or systems into a root topic with nested branches; do not use it for tables, flowcharts, Mermaid/Graphviz diagrams, or plain text lists. Input mindmap_markdown must be a clean markdown tree with one # root heading and 2-space-indented bullet nesting. If the user gives prose, first reshape it into that hierarchy, then call this tool.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNoOptional short title for the mind map
mindmap_markdownYesMarkdown tree for a mind map. Preferred structure: one top-level heading for the root topic, then nested bullet points for branches and leaves using consistent 2-space indentation. Example: `# Product Launch Strategy - Marketing - Social Media - Twitter - LinkedIn - Email Campaign - Newsletter - Promo Codes - Engineering - QA Testing - Server Scaling - Final Deployment - Customer Support - Help Docs Updated - Support Training`. When the topic is suitable for emojis (e.g., marketing, events, social media, holidays, categories like food/travel), use relevant emojis in node names to make the diagram more appealing — like 📱 for Social Media or 🚀 for Launch. Avoid prose paragraphs, tables, fenced code blocks, and mixed list styles.

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds valuable behavioral context beyond this: input must be a clean markdown tree with one root heading and 2-space indentation, and it requires the agent to reshape prose before calling. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences: purpose, usage boundaries, and input requirements. Every sentence earns its place, is front-loaded with the main action, and the structure is efficient with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers purpose, when to use, when not to use, input format, and preprocessing. With annotations covering safety and schema covering parameters, only minor gaps remain (e.g., exact return value or error behavior), but these are not critical for a read-only rendering tool. Overall, it's complete enough for reliable agent invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with detailed param descriptions and an example. The tool description raises this further by emphasizing the structural requirements ('one # root heading', '2-space-indented bullet nesting') and the need to reshape prose, plus emoji guidance in the schema. This adds meaning beyond the raw schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb+resource ('Render an interactive MCP app mind map') and clearly defines the purpose: showing hierarchical structure visually. It distinguishes itself from other formats by explicitly listing what it is not for (tables, flowcharts, Mermaid/Graphviz, lists), which is especially valuable given there are no sibling tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives explicit when-to-use ('when the user needs hierarchical structure shown visually'), when-not-to-use ('do not use it for tables, flowcharts, Mermaid/Graphviz diagrams, or plain text lists'), and even a preprocessing instruction ('If the user gives prose, first reshape it'). This fully covers the decision boundary.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

Only one tool exists, so there is no possibility of overlap or confusion. The tool's description clearly defines its purpose.

Naming Consistency5/5

The single tool name 'render_mindmap' follows a clear verb_noun pattern ('render' + 'mindmap'), which is consistent and self-explanatory.

Tool Count3/5

With only one tool, the server feels minimal, but for a specialized mindmap rendering function, this is borderline acceptable. It could benefit from additional tools like edit or delete, but it is not extreme.

Completeness5/5

The tool fully covers its stated purpose of rendering a mindmap from markdown input. There are no missing operations for the narrow scope of visualization, though the server lacks broader mindmap management capabilities.

Resources