Xmind Generator MCP Server
Servidor MCP del generador Xmind
Un servidor MCP (Protocolo de Contexto de Modelo) para generar mapas mentales de Xmind. Este servidor permite a los LLM crear mapas mentales estructurados mediante el protocolo MCP.
Características
Generar mapas mentales de Xmind con estructuras jerárquicas de temas
Soporte para notas de temas, etiquetas y marcadores
Guardar mapas mentales en archivos locales
Fácil integración con Claude Desktop y otros clientes MCP
Related MCP server: MCP Thinking Server
Prerrequisitos
Node.js : Se requiere la versión 18 o superior
Xmind : Instale la aplicación de escritorio Xmind para abrir y editar los mapas mentales generados
Claude Desktop : Necesario para utilizar esta herramienta como extensión
Configuración con Claude Desktop
Opción 1: Usar npx (recomendado)
Cree o edite el archivo de configuración de Claude Desktop:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonVentanas:
%APPDATA%\Claude\claude_desktop_config.json
Agregue la siguiente configuración:
{ "mcpServers": { "xmind-generator": { "command": "npx", "args": ["xmind-generator-mcp"], "env": { "outputPath": "/path/to/save/xmind/files", "autoOpenFile": "false" } } } }Reiniciar Claude Desktop
Empieza a utilizar el generador Xmind en tus conversaciones
Opción 2: Instalación local
Clonar el repositorio:
git clone https://github.com/BangyiZhang/xmind-generator-mcp.git cd xmind-generator-mcp npm install npm run buildCree o edite el archivo de configuración de Claude Desktop:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonVentanas:
%APPDATA%\Claude\claude_desktop_config.json
Agregue la siguiente configuración:
{ "mcpServers": { "xmind-generator": { "command": "node", "args": ["path/to/xmind-generator-mcp/dist/index.js"], "env": { "outputPath": "/path/to/save/xmind/files", "autoOpenFile": "false" } } } }Reemplace
path/to/xmind-generator-mcpcon la ruta real a su proyecto clonadoReiniciar Claude Desktop
Empieza a utilizar el generador Xmind en tus conversaciones
Nota : La sección env es opcional. Permite configurar variables de entorno para el servidor:
outputPath: Directorio o ruta de archivo predeterminado donde se guardarán los archivos de Xmind. Esto se puede sobrescribir con el parámetrooutputPathen la llamada a la herramienta.autoOpenFile: Controla si los archivos Xmind generados se abren automáticamente tras su creación. Establézcalo en "false" para desactivar la apertura automática (el valor predeterminado es "true").
Herramientas disponibles
generar mapa mental
Genera un mapa mental de Xmind a partir de una estructura jerárquica de temas.
Parámetros:
title(cadena): El título del mapa mental (tema raíz)topics(matriz): Matriz de temas para incluir en el mapa mentaltitle(cadena): El título del temaref(cadena, opcional): ID de referencia para el temanote(cadena, opcional): Nota para el temalabels(matriz de cadenas, opcional): etiquetas para el temamarkers(matriz de cadenas, opcional): marcadores para el tema (formato: "Categoría.nombre", p. ej., "Flecha.actualizar")children(matriz, opcional): Matriz de temas secundarios
relationships(matriz, opcional): Matriz de relaciones entre temasoutputPath(cadena, opcional): Ruta de salida personalizada para el archivo Xmind. Esta variable anula la variable de entorno si está configurada.
Ejemplo
A continuación se muestra un ejemplo de cómo utilizar la herramienta generate-mind-map :
{
"title": "Project Plan",
"topics": [
{
"title": "Research",
"ref": "topic:research",
"note": "Gather information about the market",
"children": [
{
"title": "Market Analysis",
"labels": ["Priority: High"]
},
{
"title": "Competitor Research",
"markers": ["Task.quarter"]
}
]
},
{
"title": "Development",
"children": [
{
"title": "Frontend",
"markers": ["Arrow.refresh"]
},
{
"title": "Backend"
}
]
}
]
}Licencia
Instituto Tecnológico de Massachusetts (MIT)
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseDqualityDmaintenanceAn MCP server that enables users to generate structured XMind mind maps with hierarchical topics, notes, and labels through natural language. It features automatic file saving to the local Documents folder and can automatically open generated maps in the XMind application.1631MIT
- AlicenseNot gradedqualityDmaintenanceA powerful MCP server that enhances LLMs with advanced sequential thinking capabilities, supporting 19 thinking modes for structured reasoning and complex cognitive tasks.16MIT
- AlicenseBqualityBmaintenanceMCP server that enables LLMs to create and edit draw.io diagrams using high-level intent commands, with automatic layout and styling.483MIT
- AlicenseAqualityCmaintenanceAn MCP server that gives LLMs structured, verifiable memory by storing facts in a knowledge graph and enabling logic-based reasoning through natural dialogue.143MIT
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
MCP server for AI dialogue using various LLM models via AceDataCloud
Markdown-based note-taking with a hosted MCP server. Your notes serve you and your AI.
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/BangyiZhang/xmind-generator-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server