-
Notifications
You must be signed in to change notification settings - Fork 0
index
aniongithub edited this page May 19, 2026
·
1 revision
mind-map's first-class consumer is an AI agent speaking architecture/mcp-server over stdio. The agent reads and writes concepts/pages the same way a human would through the architecture/web-ui — same files, same concepts/wikilinks, same concepts/search.
- agents/mcp-tools — full tool reference
- agents/workflows — common patterns
| Problem | What the wiki provides |
|---|---|
| Persistent memory across sessions | Markdown on disk, queryable any time |
| Decision history | One page per decision, concepts/backlinks surface "where else this came up" |
| Project state | concepts/frontmatter + concepts/search |
| Shared context with the human | Same files, same UI |
Model Context Protocol is the emerging standard for tool-use. By exposing mind-map via MCP, any compliant agent (Claude, Copilot, custom) gets access without bespoke integration.
graph LR
Claude -->|MCP| MM[mind-map MCP]
Copilot -->|MCP| MM
Custom -->|MCP| MM
MM --> Engine
Engine --> Files
Engine --> Index[(SQLite)]
The MCP surface is identical in semantics to what a human sees. There's no "agent-only" data path, no special agent-mode. See design/rationale.