mcp-chat-visualizer
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-chat-visualizerVisualize this conversation as a mind map"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-chat-visualizer
An MCP (Model Context Protocol) server that visualizes conversations as structured hierarchical mind maps.
When you call the visualize_chat tool, it injects a mind map generation prompt into the conversation. The LLM then generates a structured JSON mind map of your chat — no API keys or external calls needed.
Installation
npm install -g mcp-chat-visualizerOr use directly with npx:
npx mcp-chat-visualizerRelated MCP server: CaptureMind
Setup
Add to your MCP client config (Claude Code, Claude Desktop, etc.):
{
"mcpServers": {
"chat-visualizer": {
"command": "npx",
"args": ["mcp-chat-visualizer"]
}
}
}Claude Code
claude mcp add chat-visualizer -- npx mcp-chat-visualizerClaude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"chat-visualizer": {
"command": "npx",
"args": ["mcp-chat-visualizer"]
}
}
}Usage
Once configured, ask your LLM to visualize the conversation:
"Visualize this conversation as a mind map"
The LLM will call the visualize_chat tool and generate a JSON mind map like:
{
"metadata": { "topic": "...", "contentType": "mindmap", "nodeCount": 12 },
"nodes": [
{ "id": "root", "data": { "label": "Main Topic", "type": "root", "summary": "...", "hoverSummary": "..." } },
{ "id": "cat1", "data": { "label": "Category", "type": "category", "summary": "...", "hoverSummary": "..." } },
{ "id": "leaf1", "data": { "label": "Detail", "type": "leaf", "summary": "...", "hoverSummary": "..." } }
],
"edges": [
{ "id": "e1", "source": "root", "target": "cat1", "type": "connects" },
{ "id": "e2", "source": "cat1", "target": "leaf1", "type": "connects" }
],
"hierarchy": {
"root": ["cat1"],
"cat1": ["leaf1"]
}
}JSON Schema
Field | Description |
| Topic name, content type, total node count |
| Array of nodes with |
| Connections between nodes ( |
| Parent-children mapping matching the edges |
Node Types
root — Central topic of the conversation
category — High-level grouping (4-6 per map)
leaf — Specific details, facts, or examples
The mind map goes 3-4 levels deep: Root → Categories → Sub-categories → Leaves.
How It Works
You ask the LLM to visualize the conversation
The LLM calls the
visualize_chattool with the conversation textThe tool returns structured prompt instructions
The LLM follows the instructions and generates the mind map JSON
You get the JSON in the chat, ready to use in your UI
No external API calls. No API keys. The server is a lightweight prompt delivery mechanism — the LLM does all the generation.
License
ISC
Available Tools
1 toolvisualize_chatVisualize ChatA
Visualize a conversation as a hierarchical mind map. Pass the conversation text and receive structured instructions. Follow the returned instructions to generate the mind map JSON.
| Name | Required | Description | Default |
|---|---|---|---|
| conversation | Yes | The conversation text or summary to visualize as a mind map |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It transparently reveals that the tool's output is structured instructions, not the actual mind map, and that the user must follow these instructions to produce the JSON. This is a key behavioral trait beyond the schema and is well disclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences: the first states the core purpose, and the second explains the procedure. It is front-loaded and contains no unnecessary words, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter tool with no output schema, the description covers the entire workflow: input, output (instructions), and required follow-up action. It could specify the instruction format in more detail, but it is sufficiently complete for an agent to use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides 100% coverage for the single 'conversation' parameter, including a clear description. The tool description adds no additional parameter semantics beyond what the schema already offers, so the baseline score of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool visualizes a conversation as a hierarchical mind map, and importantly clarifies that it returns structured instructions rather than the final JSON. This is specific and understandable, though it slightly diverges from the 'visualize' name. There are no sibling tools to differentiate from.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear usage flow: pass conversation text, receive instructions, then follow them to generate the mind map JSON. However, it does not explicitly state when to use this tool vs alternatives or any exclusions. Usage is implied rather than directly guided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
v1.0.0- First observed
visualize_chat
TDQS
With only one tool, there is no possibility of selecting the wrong tool. The tool's purpose is clearly and uniquely described.
The single tool 'visualize_chat' follows a clear verb_noun pattern, making its function predictable and consistent.
The server has only one tool, which feels thin on the count scale, though it is appropriately scoped for a very specific visualization purpose.
The tool covers the full intended functionality of converting conversation text into mind map instructions, with no obvious missing operations for its narrow domain.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
- MindlifyOAuthco.mindlify
Turn AI conversations into visual knowledge maps. Create, connect, search, and organize thoughts.
Renders interactive Chart.js charts and dashboards inline in AI conversations.
Visual AI for strategic thinking — SWOT, flowcharts, mindmaps, Gantt diagrams as polished SVG.
Create, edit, and organize MindMeister mind maps from your AI assistant.
Related MCP Servers
- AlicenseBqualityDmaintenanceA Model Context Protocol server that converts Markdown content into interactive mindmaps, allowing AI assistants to visualize hierarchical information through either HTML content or saved files.1236MIT
- AlicenseNot gradedqualityDmaintenanceTurn Claude Desktop conversations into visual mind maps via MCP. Highlights blockers to surface where you're stuck.1MIT
- AlicenseAqualityDmaintenanceCompresses AI chat sessions into a typed knowledge graph (~300–800 tokens). Works file-based in Copilot, Claude Code, Cursor, and Gemini CLI without MCP server mode. Supports local/offline extraction via Ollama — no API key required.92MIT
- AlicenseAqualityDmaintenanceCaptures ideas from conversations and organizes them into a persistent, hierarchical mindmap. Supports search, deduplication, export, import, and cloud sync.1325MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Asar007/mcp-chat-visualizer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server