-
Notifications
You must be signed in to change notification settings - Fork 0
quickstart
aniongithub edited this page May 19, 2026
·
1 revision
Get mind-map running in 30 seconds.
Linux / macOS:
curl -sSL https://aniongithub.github.io/mind-map/install.sh | bashWindows (PowerShell):
iwr -useb https://aniongithub.github.io/mind-map/install.ps1 | iexBoth scripts drop a single binary into ~/.local/bin/mind-map (or %USERPROFILE%\bin\mind-map.exe). See design/lightweight for what 38 MB buys you.
mind-map serveOpen http://localhost:4242. You're looking at the architecture/web-ui for an empty wiki at ~/.mind-map/wiki.
Click anywhere in the sidebar index, or directly create a file:
echo "# Hello" > ~/.mind-map/wiki/hello.mdRefresh — there's hello in the sidebar. Try editing it in the browser.
Edit a page and add [[hello]] somewhere. Save. Click the link. Open hello and look at the Linked from panel — your first concepts/backlinks.
Add this to your agent's MCP config (Claude Desktop, Copilot, etc.):
{
"mcpServers": {
"mind-map": {
"command": "mind-map",
"args": ["serve", "--stdio", "--dir", "/home/you/.mind-map/wiki"]
}
}
}The agent now has agents/mcp-tools for reading and writing your wiki.
- concepts/index — read about the primitives
- guides/install — installer details + verifying it yourself
- guides/platforms — what runs where
- guides/out-of-the-box — sensible defaults
- guides/service — run as a system service for always-on access
- guides/sync — git-sync a folder to GitHub
- guides/refactoring-a-wiki — bulk renames safely
- agents/workflows — patterns