md-redline
The md-redline server enables two-way inline review and commenting on markdown files between humans and AI agents. It provides four core tools:
mdr_request_review: Open markdown files for human review. The agent hands off a document to the user and waits for feedback (batches of inline comments). The agent can re-poll with a session ID to continue receiving feedback batch by batch.mdr_review: Post inline anchored comments and/or replies to existing comments on markdown files (non-blocking). Comments appear in the browser UI anchored to exact text, allowing agents to critique, annotate, or respond to human-written documents.mdr_wait: Block until the user finishes engaging with a review session (clicks "Done"). Must be called aftermdr_review; re-callable up to 90 seconds per call. Afterward, the agent can re-read the file to pick up replies, edits, and deletions.mdr_ask: Post one or more clarifying questions anchored to specific text inside an active session. Blocks until the user answers all questions, enabling interactive clarification without guessing at ambiguous instructions.
Key characteristics:
Comments are stored directly in the markdown file as invisible HTML markers — no sidecar files or external database.
Sessions support multiple files at once.
An optional resolve workflow (
enableResolve) adds explicitopen/resolvedstates to comments.Each tool call includes an
authorfield to distinguish feedback from different agents in multi-agent setups.
md-redline
Inline review comments for markdown specs, prompts, and design docs.
Highlight text in a rendered document, leave comments, and your AI agent can read and address them directly. Comments are stored as invisible HTML markers in the .md file itself. No sidecar files, no database, no external service. The markdown file stays the source of truth.
With the built-in MCP server, review runs in both directions. Your agent can request your review mid-task and pause until you send your feedback, or review a doc you wrote and leave anchored comments for you. Either way: no copy-paste, no context switching.

See the full review workflow in 30 seconds:
https://github.com/user-attachments/assets/7f493201-3aca-489c-86f0-3a7df454f693
Works with Claude Code, Claude Desktop, Codex CLI, Gemini CLI, and any other MCP client that supports stdio servers. As Sean Grove argues in specs are the new code, specs are becoming the primary unit of work in agentic development. mdr gives that workflow review tooling closer to code review.
Quick start
Prerequisite: Node 20 or newer.
npx md-redline /path/to/spec.mdThis starts the local app if needed and opens it in your browser.
Or install globally:
npm install -g md-redline
mdr /path/to/spec.md # Open a file
mdr /path/to/dir # Open a directory
mdr --stop # Stop the running servermd-redline also works as an alias for mdr.
That gives you the viewer and commenting. The agent integration (reviews in both directions, anchored questions) comes from the MCP server, registered in the next section.
Related MCP server: LINZA-MCP
MCP setup
Register the MCP server with your agent so it can request reviews mid-task.
Claude Code or Claude Desktop
mdr mcp install # register with both clients (default)
mdr mcp install --claude-code # just Claude Code (via `claude mcp add`)
mdr mcp install --claude-desktop # just Claude Desktop (JSON config file)Codex CLI
codex mcp add md-redline -- mdr mcpGemini CLI
gemini mcp add --scope user md-redline mdr mcpThe --scope user flag is important. Gemini defaults to per-project scope, which only registers mdr for the current directory.
Other MCP clients
Add this server entry to your client's MCP config file:
{
"mcpServers": {
"md-redline": {
"command": "mdr",
"args": ["mcp"]
}
}
}Prerequisite: mdr must be on your PATH (e.g. via npm install -g md-redline). If your client spawns subprocesses without inheriting your shell's PATH, use the absolute path from which mdr as the command value.
After installing, restart your MCP client; most clients only discover new servers at launch. To verify, ask your agent "what mdr tools do you have?" and it should list mdr_request_review, mdr_review, mdr_ask, and mdr_wait.
Review workflow
With MCP registered, review runs in both directions. Pick by who is giving the feedback:
You review the agent's doc | The agent reviews your doc | |
Typical moment | The agent just drafted or edited a spec; you want to mark it up before it continues | You wrote a PRD (or received one) and want a critique |
What you say | "Let me review specs/feature-x.md in mdr before you continue." | "Use mdr to review prd.md and leave comments." |
Who comments | You | The agent |
How it ends | You click Send & finish | You click End review |
1. You review the agent's doc
The common flow right after an agent drafts a document. Tell the agent:
"Let me review docs/specs/feature-x.md in mdr before you continue."
The agent calls mdr_request_review and pauses. mdr opens the file, you highlight text and leave comments, then click Send N comments. The agent receives your feedback as a structured prompt and starts addressing your comments. You can keep sending follow-up batches while it works; Send N & finish sends the last batch and closes the loop. The review is opt-in per request. The agent only pauses when you ask for it.
2. The agent reviews your doc
The reverse direction, for docs the agent did not just write: your own draft, a teammate's PRD, a spec from another repo. Tell the agent:
"Use mdr to review prd.md and leave comments."
The agent calls mdr_review. Its findings land as inline comments anchored to the exact text, and the browser opens so you can read them as they arrive. The agent then waits (via mdr_wait) while you work through the feedback: reply on any card, edit the doc, delete comments you disagree with. When you are done, click End review in the banner. That click is the signal for the agent to re-read the file and pick up your replies and edits, so the session stays open until you press it. The agent is not stuck; it is listening.
https://github.com/user-attachments/assets/39a53685-cdac-4251-b75d-52cad6996b37
Either direction: the agent can ask you questions
Inside any active session, the agent can hit a fork where your answer changes what it should do next. Rather than guessing, it can call mdr_ask to post anchored questions into the doc and block until you answer:
You get a toast with a View button, a banner chip ("N questions awaiting your reply"), and a "(N questions)" tab title, so you notice even from another window.
Each question is a normal comment card anchored to the sentence it is about. Reply right on the card.
The moment every question has an answer, the agent unblocks with your reply text. No End review needed.
This shines during hand-offs. Leave a comment like "this conflicts with what we decided, fix it," and instead of guessing, the agent asks "which decision: per-seat or flat-rate?" anchored where it matters. You can also request the pattern directly:
"Review prd.md with mdr. For your top 2 open questions, use mdr_ask and incorporate my answers before summarizing."
Questions and reviews survive in the file as ordinary comment markers, so nothing is lost if a session ends early: the agent is always told to re-read the file.
Without MCP
Open a markdown file with
mdr /path/to/spec.md.Highlight text and leave inline comments.
Copy the hand-off prompt.
Paste the prompt into your AI agent.
The agent edits the file, addresses the feedback, and removes the comment markers it handled.
Review the result in diff view.
Optional: resolve workflow
Enable resolve mode in Settings for human review with explicit open and resolved states.
Who this is for
People writing specs, prompts, or design docs locally with file-based AI agents
Teams reviewing docs before they are committed or sent out for wider review
Anyone in a human + agent editing loop who wants structured inline feedback in plain files
Non-goals
Not a collaborative multi-user editing tool.
Not a replacement for GitHub PR reviews (use those once the file is in git).
Not designed for untrusted content. This is a local dev tool for your own files.
How comments are stored
Comments are stored as invisible HTML markers directly in the markdown, immediately before the text they refer to, so both humans and agents can work from the same file.
Some text <!-- @comment{
"id":"uuid",
"anchor":"highlighted text",
"text":"Rewrite this section to be clearer.",
"author":"User",
"timestamp":"2026-03-26T12:00:00.000Z",
"replies":[]
} -->highlighted text continues here.This makes feedback:
visible to AI agents via a plain file read
portable with the markdown file
invisible in normal renderers (GitHub, VS Code preview)
Features
Review and commenting
Inline comments anchored to rendered text, including overlapping comments
Two-way agent review over MCP: agents request your review, review your docs, and ask anchored questions
Threaded replies and optional
open/resolvedreview statesAdjustable anchors with drag handles
Rendered, raw, and diff views
Hand-off prompt copying for one or multiple files
Navigation and editing
Multi-tab editing with session persistence and tab context menus
File explorer, recent files, and native OS file picker
Find in document (
Cmd+F) with match navigationTable of contents with scroll spy
Command palette (
Cmd+K), keyboard shortcuts, and settings panel (Cmd+,)Resizable panels and right-click context menus
Rendering and integrations
Real-time reload via SSE when files change externally
Mermaid diagram rendering with commentable text
Local image embeds and clickable links between markdown files
Customizable comment templates
8 themes: Light, Dark, Sepia, Nord, Solarized, GitHub, Rosé Pine, Catppuccin
Supported platforms
macOS: supported
Linux: supported; system file picker requires
zenityWindows: supported; system file picker uses PowerShell
Permissions
By default, md-redline can read any markdown file in your home directory. The first time you run mdr (or the first time after upgrading from a version without the trusted-roots feature), your home folder is added to a trusted-roots list at ~/.md-redline.json. Files outside your home directory (/tmp, mounted volumes, system paths) require an explicit permission grant via the OS folder picker the first time you open them. Granted folders are remembered across restarts.
To use the strict per-folder model instead, run mdr --restrict once after install. This creates a ~/.md-redline.json with no default trust, and you'll grant each folder explicitly the first time you open a file in it.
File saves use atomic write-then-rename and mtime-based conflict detection to prevent data loss from concurrent edits. Mermaid SVG output is sanitized via DOMPurify before rendering. Only run md-redline in environments you trust.
Troubleshooting
The agent says it has no mdr tools. Restart your MCP client after
mdr mcp install; most clients only discover new servers at launch. For non-Claude clients, confirmmdris on thePATHthe client actually uses (see MCP setup above).The browser opened but the page will not load. A stale server may be holding the port. Run
mdr --stop, then reopen your file.A review banner is stuck on screen. Click End review (agent reviews) or Cancel review (your reviews). Sessions do not survive a server restart, but comments do.
Something went wrong mid-session. The file is always the source of truth. Comments and agent questions live in the markdown itself as
<!-- @comment{...} -->markers, so you can read, edit, or delete them in any editor, and the agent is always told to re-read the file when a session ends unexpectedly.
Development
From source
git clone https://github.com/dejuknow/md-redline.git
cd md-redline
npm install
npm run devOpen the local URL printed by Vite (usually http://localhost:5188).
Scripts
npm run dev # Start dev server
npm run lint # Lint
npm test # Production build + unit tests
npm run test:e2e # Playwright E2E tests
npm run build # Production buildAgent eval
The eval harness tests whether AI agents correctly read, address, and remove inline comments.
npm run eval:dryvalidates eval fixturesnpm run evalruns the full eval harnessSee eval/README.md for details
Architecture
bin/md-redline CLI entry point (invoked as `mdr` or `md-redline`)
server/index.ts Hono server for file I/O, browsing, SSE, and local integrations
src/App.tsx Main application shell
src/components/ Viewer, sidebar, raw view, diff view, TOC, explorer, settings, etc.
src/hooks/ State, persistence, selection, file watching, drag handles, tabs
src/lib/comment-parser.ts Inline comment parsing and mutation helpers
src/markdown/pipeline.ts Markdown rendering pipeline
eval/ Eval harness for agent behavior against inline comments
e2e/ Playwright end-to-end coverageLicense
Maintenance
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dejuknow/md-redline'
If you have feedback or need assistance with the MCP directory API, please join our Discord server