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
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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