mcp-registry/markmap-mcp-server

    ==================
      
       /// MCP ///
      /// MAR ///
        
    ==================
        
    [server:online]
    [protocol:ready]

markmap-mcp-server

by jinzcdev

MCP server for converting Markdown to interactive mind maps with export support (PNG/JPG/SVG)

79
8
Open Source

01

markdown-to-mindmap

Convert Markdown text into an interactive mind map

Installation

1. Prerequisites
• Node.js ≥ 18
• npm or yarn (comes with Node)
2. Install the package (global install so you can run the server anywhere)
npm install -g @jinzcdev/markmap-mcp-server # or yarn global add @jinzcdev/markmap-mcp-server
3. Start the MCP server
markmap-mcp-server start --port 8080 # default port is 3000 if --port is omitted.
4. Programmatic use (inside your own Node project)
npm install @jinzcdev/markmap-mcp-server --save import { createServer } from '@jinzcdev/markmap-mcp-server'; const server = await createServer({ port: 8080 });
5. Optional configuration (CLI flags or API options)
--port <number> Port to bind the HTTP server (default 3000)
--allow-origin <origin> CORS Access-Control-Allow-Origin header (default "*")
--no-cache Disable HTTP cache headers
6. Build from source (if you cloned the repo)
git clone https://github.com/jinzcdev/markmap-mcp-server.git cd markmap-mcp-server npm install npm run build npm start

Documentation

License: MIT License
Updated 7/30/2025
markmap-mcp-server - MCP Server Registry - Augment Code