Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"xmind-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
一个基于 .NET 的 MCP(Model Context Protocol)服务器,用于读取、搜索、修改和导出 .xmind 文件。
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity / design
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for Xmind Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
一个基于 .NET 的 MCP(Model Context Protocol)服务器,用于读取、搜索、修改和导出 .xmind 文件。
它适合用作 AI Agent / MCP Client 的本地 XMind 操作后端,让模型可以直接对思维导图进行结构化读写,而不是把 XMind 当作黑盒文件处理。
ReadXmindFile:读取文件概览GetTopicTree:获取指定工作表的完整主题树GetXmindStatistics:获取所有工作表统计信息ListSheets:列出全部工作表ExportSheetToMarkdown:将指定工作表导出为 MarkdownSearchTopicsByTitle:按标题关键词搜索SearchTopicsByRegex:按正则表达式搜索标题SearchTopicsByMarker:按标记搜索SearchTopicsByLabel:按标签搜索SearchTopicsByNote:按备注内容搜索GetTopicDetails:获取主题详细信息ListRelationships:列出指定工作表中的关系CreateXmindFile:创建新的 XMind 文件AddSheet:新增工作表RenameSheet:重命名工作表DeleteSheet:删除工作表AddChildTopic:添加子主题AddMultipleChildTopics:批量添加子主题InsertChildAtPosition:按索引插入子主题MoveTopic:移动主题到新的父节点下CloneTopicTool:复制主题到新的父节点下DeleteTopic:删除主题UpdateTopicTitle:更新主题标题UpdateTopicNotes:更新主题备注SetTopicLink:设置主题链接ClearTopicLink:清除主题链接AddMarkerToTopic:添加标记RemoveMarkerFromTopic:移除标记AddLabelToTopic:添加标签RemoveLabelFromTopic:移除标签AddRelationship:新增关系RemoveRelationship:删除关系filePath所有工具都使用 XMind 文件完整路径,例如:
"filePath": "C:\\workspace\\demo.xmind"
sheetTitle多数搜索/写入工具支持可选 sheetTitle:
{ "error": "错误信息" }
net11.0)git clone https://github.com/joesdu/xmind-mcp-server.git
cd xmind-mcp
dotnet build XmindMcp.slnx
dotnet test XmindMcp.slnx
dotnet run --project src/XmindMcp
dotnet publish src/XmindMcp -c Release -o publish
在项目根目录创建 .vscode/mcp.json(仓库已包含此文件,打开项目后 VS Code 会自动发现并提示启用):
使用 dotnet run(开发模式):
{
"servers": {
"xmind": {
"type": "stdio",
"command": "dotnet",
"args": ["run", "--project", "${workspaceFolder}/src/XmindMcp"]
}
}
}
使用发布后的可执行文件(推荐):
{
"servers": {
"xmind": {
"type": "stdio",
"command": "yourpath\\xmind-mcp\\publish\\XmindMcp.exe"
}
}
}
注意:VS Code 的 MCP stdio 传输要求 stdout 只输出合法 JSON,本项目已将所有日志重定向至 stderr,可直接使用。
使用 dotnet run:
{
"mcp": {
"xmind": {
"type": "local",
"command": "dotnet",
"args": ["run", "--project", "yourpath\\xmind-mcp\\src\\XmindMcp"],
"enabled": true
}
}
}
使用发布后的可执行文件:
{
"mcp": {
"xmind": {
"type": "local",
"command": "yourpath\\xmind-mcp\\publish\\XmindMcp.exe",
"enabled": true
}
}
}
{
"tool": "CreateXmindFile",
"parameters": {
"filePath": "C:\\workspace\\project-plan.xmind",
"rootTitle": "项目计划",
"sheetTitle": "主工作表"
}
}
{
"tool": "AddChildTopic",
"parameters": {
"filePath": "C:\\workspace\\project-plan.xmind",
"sheetTitle": "主工作表",
"parentTopicId": "topic-id",
"title": "需求分析",
"notes": "分析项目需求与边界"
}
}
{
"tool": "SearchTopicsByTitle",
"parameters": {
"filePath": "C:\\workspace\\project-plan.xmind",
"keyword": "C#"
}
}
{
"tool": "SearchTopicsByRegex",
"parameters": {
"filePath": "C:\\workspace\\project-plan.xmind",
"pattern": "^(需求|设计)",
"ignoreCase": true
}
}
{
"tool": "SetTopicLink",
"parameters": {
"filePath": "C:\\workspace\\project-plan.xmind",
"
... [View full README on GitHub](https://github.com/joesdu/xmind-mcp-server#readme)