MarkdownTree transforms any markdown document into an interactive node graph β structure, hierarchy, and relationships become immediately visible. Edit, explore, enhance with AI, and export in seconds.
From a powerful Monaco editor to an AI assistant to a fully documented API β MarkdownTree is the tool you didn't know you were missing.
See every heading, paragraph, code block, and link as a navigable node in an interactive graph. Collapse subtrees, zoom, pan, and click to jump to source.
Full-featured markdown editor powered by Monaco β the same engine as VS Code. Syntax highlighting, auto-pairs, and live graph updates as you type.
Open the AI panel to improve writing, generate a table of contents, summarize sections, or ask questions about your document in natural language.
Switch between Editor, Graph, Split, and Preview. Resize panels freely. Toggle the document outline sidebar and minimap to fit your workflow.
Export to Markdown, clean HTML, or structured JSON. Share a URL that encodes your document so collaborators open it instantly, no signup needed.
Every feature is available via a versioned REST API with OpenAPI docs. MCP-compatible for AI agent workflows at mcp.platphormnews.com.
Open the editor and paste your existing markdown, import a .md file, or start typing from scratch.
Your document instantly becomes a zoomable, collapsible graph. Click any node to jump to it in the editor.
Export to Markdown, HTML or JSON. Copy a shareable URL to send your document β no account required.
Every feature is accessible via /api/v1. Transform markdown to graph JSON, stream AI enhancements, and receive structured webhooks. OpenAPI spec live at /api/docs.
{
"content": "# Hello\n\n## World",
"options": {
"includeText": true,
"direction": "RIGHT"
}
}
// β 200 OK
{
"nodes": [
{ "id": "n0", "type": "heading",
"depth": 1, "text": "Hello" },
{ "id": "n1", "type": "heading",
"depth": 2, "text": "World" }
],
"edges": [
{ "from": "n0", "to": "n1" }
]
}MarkdownTree is a visual markdown editor that transforms your documents into interactive graph visualizations, so you can see, navigate and understand document structure at a glance.
Yes, MarkdownTree is completely free and open source under the MIT license.
No. Documents are processed entirely in your browser. Nothing is sent to or stored on our servers.
MarkdownTree supports export to Markdown, HTML, and JSON. PNG graph export is coming soon.
Yes. MarkdownTree exposes a versioned REST API at /api/v1 with OpenAPI documentation at /api/docs. It is MCP-compatible for AI agent workflows.
Paste any document and get an interactive graph in under a second. No signup, no install.