NotionCodeMirror
This is a submission for the Notion MCP Challenge What I Built NotionCodeMirror — a CLI that auto-generates a living code documentation workspace in Notion from any GitHub repo, and keeps it in syn...

Source: DEV Community
This is a submission for the Notion MCP Challenge What I Built NotionCodeMirror — a CLI that auto-generates a living code documentation workspace in Notion from any GitHub repo, and keeps it in sync as the code evolves. Point it at a repo, and within minutes you get a fully structured Notion workspace: An Overview with language breakdown and symbol inventory An Architecture page written in real prose by Claude A searchable API Reference database populated with every function and class A module page for each top-level directory Run it again after a PR merges, and only the changed pages update. The core idea is multi-MCP orchestration. Phase 1 uses jcodemunch-mcp to analyze the codebase: Extracts symbols Ranks them by import-graph centrality Traces dependency edges Builds class hierarchies All of this happens without involving Claude. Phase 2 hands Claude a compact structured digest (about 8–12K tokens) instead of raw source files, so it can focus entirely on synthesis and writing. The A