MCP XMind服务器
STDIO用于分析和查询思维导图的服务器
用于分析和查询思维导图的服务器
A Model Context Protocol server for analyzing and querying XMind mind maps. This tool provides powerful capabilities for searching, extracting, and analyzing content from XMind files.
To install XMind Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @41px/mcp-xmind --client claude
npm install @modelcontextprotocol/sdk adm-zip zod npm install --save-dev typescript @types/node
node dist/index.js <allowed-directory> [additional-directories...]
read_xmind
get_todo_tasks
list_xmind_directory
read_multiple_xmind_files
search_xmind_files
extract_node
extract_node_by_id
search_nodes
{ "name": "search_nodes", "arguments": { "path": "/path/to/file.xmind", "query": "project", "searchIn": ["title", "notes"], "caseSensitive": false } }
{ "name": "extract_node", "arguments": { "path": "/path/to/file.xmind", "searchQuery": "Feature > API" } }
{ "name": "get_todo_tasks", "arguments": { "path": "/path/to/file.xmind" } }
Example claude_desktop_config.json
for development:
{ "xmind": { "command": "node", "args": [ "/Users/alex/Src/mcp-xmind/dist/index.js", "/Users/alex/XMind" ] } }
Example claude_desktop_config.json
for production using npmjs:
{ "xmind": { "command": "npx", "args": [ "-y", "@41px/mcp-xmind", "/Users/alex/XMind" ] } }
npm run build
npm run type-check
npx @modelcontextprotocol/inspector node dist/index.js /Users/alex/XMind