LaTeX editor for AI agents: live PDF preview, PDF comments that drive edits, git history
io.github.ZoeLinUTS/magictex (MCP Server)
This MCP server provides a LaTeX editor experience tailored for AI agents, focused on live PDF preview, the ability to add PDF comments, and using those comments to drive edits. It also includes git history, tying document changes to version history for review.
๐ ๏ธ Key Features
Live PDF preview
PDF comments that drive edits
Git history
๐ Use Cases
Iterating on LaTeX content with AI agents using feedback loops
Reviewing and applying edits based on PDF annotations
Tracing changes via git history
โก Developer Benefits
Edit workflow connected to PDF comments for more direct revision cycles
MagicTeX is a LaTeX editor built for AI agents โ an Overleaf-like
one-window workspace for Claude Code, served by an MCP server, with no local TeX
install and no Overleaf account: live PDF preview, a source editor with a Visual
(WYSIWYG) mode, change history, and comments you anchor on the rendered PDF that
become edit instructions for the agent. (npm package: magictex-mcp.)
It compiles with a WASM TeX Live 2026 engine (texlyre-busytex)
running inside a headless browser, so there's nothing multi-gigabyte to install โ
just a one-time WASM asset download.
The MagicTeX workspace: file tree, source editor, live PDF, and a reviewer comment
See it before you install
A guided walkthrough of the comment โ agent loop lives at
zoelin.dev/tools/magictex, built from real
tool output. It's a replay, not a hosted instance โ the TeX engine is a one-time
~650 MB download and the agent half is Claude itself, so MagicTeX runs next to your
project rather than in a web page.
The workspace
One browser window (inspired by Typst's one-surface editor and LiquidText's
anchored annotations):
code
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ โ up to date ยท 13 pages Export .zip ยท Download PDF โ
โโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโค
โ Source / โ PDF (live) โ Comments โ
โ History โ select text โ ๐ฌ comment โ accepted โ ask โ
โ editor, โ highlights stay anchored โ Claude to โ
โ timeline โ auto-reloads on every edit โ address them โ
โ + diffs โ โ โ resolved โ โ
โโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโ
Comment โ Claude loop (the point of it all). Review the rendered document
like a supervisor marking up a printout: select text, attach a comment
("tighten this paragraph"). Then tell Claude to "address my comments" โ it
pulls them via check_comments as located work items (page + quoted passage
the source file:line it anchors to + your ask), edits the source, and
resolves each card with a note. You interact with the document; Claude interacts
with the source. Run it hands-off with /loop โ see
docs/AGENT-LOOP.md.
Editable source panel. A CodeMirror LaTeX editor with the project's files โ
save (Ctrl+S) recompiles and refreshes the PDF, Typst-style. Or keep using your
own editor: any save triggers the same live loop.
Live reload. A file watcher recompiles on every save โ Claude's edits, the
built-in editor's, or your external editor's.
Change history. Each successful compile is auto-snapshotted to a hidden
git ref (refs/latex-preview/checkpoints) โ never touching your branches,
git log, or working tree. The History tab shows the timeline and each
checkpoint's colorized diff beside the PDF.
Get to Overleaf.Download PDF, Export .zip (clean build-inputs
bundle), and a one-click Open in Overleaf link for public GitHub repos;
Premium Git-bridge sync is a documented git push. See docs/USER-GUIDE.md.
Review workflow (reviewer โ gate โ resolver). A reviewer/defender agent posts
comments via add_comment; you Accept/Reject them (or flip Auto-accept for
copilot mode); an author loop resolves the accepted ones. Comments carry roles and
a reply thread. See docs/AGENT-LOOP.md.
Save vs. recompile, your call. The built-in editor auto-saves every 30s without
recompiling; Ctrl+S / Save / Recompile rebuild the PDF on demand. (Flip
โก Live for recompile-as-you-type.) Your own editor and Claude's edits still
auto-recompile via the watcher.
Real projects. Auto-detects the main file, gathers multi-file
\input/\include, .bib, in-repo .cls/.sty/.bst and figures, runs
BibTeX and reruns when needed; common missing packages are auto-injected.
Compile backend. Uses your local latexmk when you have one โ full package
fidelity, output matching Overleaf โ and the bundled zero-install WASM TeX Live
when you don't. Force either with backend: "system" / "wasm". Every compile
reports which one ran.
Document classes.IEEEtran is bundled, because no venue class ships in the
WASM TeX Live and a missing class can't be worked around the way a package can.
Conference classes (NeurIPS, ICML, CVPR, ACL, AAAI โฆ) carry no redistributable
licence, so put the .cls from the author kit beside your source โ it's picked up
automatically.
MCP tools:render_preview (compile + open the workspace), check_comments /
resolve_comment / add_comment / reply_to_comment (the review loop), show_diff
(side-by-side diff as an image โ useful on image-capable clients).
Actionable errors. Failed compiles return parsed {file, line, message}
errors so Claude can self-correct, and show in the workspace.
Setup
MagicTeX is on npm as magictex-mcp and
listed in the official MCP registry as
io.github.ZoeLinUTS/magictex โ so any client that reads the registry can find it.
There's nothing to clone and no TeX install; npx fetches it on first use.
For local development from a clone, point it at the source instead:
"command": "npx", "args": ["tsx", "/absolute/path/to/magictex-mcp/src/server.ts"]
Restart Claude Code (or /mcp reconnect) so it picks up the server.
Ask Claude to render. e.g. "render a preview of this paper" โ the first call
downloads the WASM TeX Live assets (~650 MB, one time), compiles, and opens the
live preview tab. Subsequent edits reload it automatically.
The WASM assets are not in this repo. They're fetched on first run into a
per-user cache โ ~/Library/Caches/magictex on macOS, $XDG_CACHE_HOME/magictex
on Linux, %LOCALAPPDATA%\magictex on Windows โ so upgrading MagicTeX doesn't
re-download them, and a checkout, a global install and an npx run share one copy.
Set MAGICTEX_ASSETS_DIR to put them elsewhere. To pre-fetch:
npx texlyre-busytex download-assets <that directory>.
Install as a Claude Code plugin (slash commands)
For a low-typing workflow, install MagicTeX as a plugin โ one install gives you the
MCP server and the slash commands:
Then, in your paper project, use the workflow commands for the common flows:
/magic-latex โ compile and open the workspace (the live preview).
/ai-review [skill] โ review the paper with a skill (default
academic-paper-revision; pass any skill name) and post comments for you to
Accept/Reject. Missing skills are reported with an install hint.
/address-comments โ resolve your accepted comments (loop it with
/loop 60s /address-comments).
โก /ultra-agents [skill] [depth] โ fully autonomous: review, auto-accept, fix,
repeat, up to depth rounds (default 2), stopping early the moment a round finds
nothing new. No per-round approval โ that's the point, and the risk. depth > 5
asks you to confirm before starting. Ends with a summary (what was raised, what
changed, which checkpoints to look at) โ every round is still an ordinary,
revertible checkpoint. See docs/AGENT-LOOP.md.
One command per tool
Every MCP tool also has a slash command with the same name, so you can drive any
single step by typing the tool name. The rule to teach: the tool is X โ type
/X.
Type this
Runs tool
What it does
/render_preview
render_preview
Compile the paper and open/refresh the live preview.
/check_comments
check_comments
List the comments you've accepted, as edit instructions (no edits yet).
/resolve_comment [id] [note]
resolve_comment
Mark a comment done after the edit; it turns green for your review.
/add_comment ["quote"] [note]
add_comment
Anchor a comment onto a passage for you to Accept/Reject.
/reply_to_comment [id] [text]
reply_to_comment
Add a threaded reply to a comment.
/show_diff [checkpoint]
show_diff
Side-by-side visual diff as an image (current changes, or a checkpoint).
/list_checkpoints [limit]
list_checkpoints
Recent checkpoints with their sha, newest first โ find one to pass into /show_diff.
You never have to type these โ plain English works too ("render a preview",
"address my comments"). The commands are just a fast, teachable shorthand.
The plugin bundles the MCP server (npx magictex-mcp), so installing the plugin is
all you need โ the .mcp.json above is the alternative if you'd rather not install
a plugin. The slash commands work either way.
Tools
The MCP surface, for any client that speaks MCP. (In Claude Code you can just ask in
plain English, or use the slash commands above โ these are the underlying tools.)
Tool
Parameters
What it does
render_preview
mainFile? ยท engine? (pdflatex | xelatex | lualatex, default xelatex) ยท backend? (wasm | system | auto, default auto โ local latexmk if installed, else the bundled WASM engine)
Compiles the project and opens/refreshes the live workspace. The main file is auto-detected by scanning for \documentclass if omitted.
check_comments
includeResolved? (default false)
Returns the accepted comments as located work items โ page, quoted passage, the source file:line, and the ask. Reviewer suggestions awaiting your decision are reported but not returned as work.
Anchors a comment onto a passage. Posts as a suggestion awaiting your Accept/Reject unless accepted is set โ that flag is what makes autonomous mode autonomous.
resolve_comment
id ยท note
Marks a comment done after the edit, with one line describing what changed. It turns green in the workspace for your review.
reply_to_comment
id ยท text ยท role? (author | reviewer | defender)
Adds a threaded reply, so a disagreement can be worked out on the comment instead of in chat.
show_diff
checkpoint?
Renders a side-by-side diff as an image, shown inline in the conversation. Defaults to the current uncommitted changes; pass a checkpoint sha for a saved version.
list_checkpoints
limit? (default 10, max 50)
Recent checkpoints with their sha, newest first โ use it to find one to pass to show_diff.
The headline workflows are built on top of these, not among them./magic-latex,
/ai-review, /address-comments and โก /ultra-agents are Claude Code plugin
commands that orchestrate the tools above โ /ultra-agents chains review โ
auto-accept โ fix for as many rounds as you allow, and is the reason add_comment
takes an accepted flag. They are not part of the MCP surface, so another MCP client
sees the seven tools only. See the plugin section
and docs/AGENT-LOOP.md.
See it in the terminal
These are real tool outputs, captured verbatim from an actual run against the sample
paper โ not mocked up. This is what you see in Claude Code while the browser
workspace (screenshot above) reflects the same state live.
You type:
code
/magic-latex
Claude calls render_preview and replies:
code
โ Compiled main.tex with xelatex in 1900ms โ 2 files. Workspace (live preview,
source editor, history, PDF comments โ auto-reloads on edits):
http://127.0.0.1:52042/app
You (or a reviewer skill) leave a comment, then ask what's ready to act on. Claude
calls check_comments:
code
1 accepted comment โ edit each at its source location per the instruction, then
call resolve_comment with its id and a one-line note:
[id: 2fce9e3c8b5f] p.1 โ "Sorting widgets efficiently is a long-standing problem"
โณ source: main.tex:15
โ Tighten this opening sentence.
(1 reviewer suggestion still awaits the human's accept in the workspace โ not
actionable yet.)
Claude makes the edit and calls resolve_comment:
code
โ Resolved comment 2fce9e3c8b5f ("Sorting widgets efficiently is a long-standing
problemโฆ") โ the card now shows: Rewrote the opening sentence.
Ask again, and the accepted queue is empty โ only the still-unaccepted suggestion
remains, waiting on you:
code
No accepted comments. (2 already resolved.)
(1 reviewer suggestion still awaits the human's accept in the workspace โ not
actionable yet.)
How it works
code
Claude edits .tex โโ
file watcher โโโโโโผโโถ compile coordinator โโถ headless Chromium โโถ WASM TeX โโถ PDF
render_preview โโโโ (serialized) (engine host) โ
โผ
your workspace (/app) โโโ WebSocket "reload" โโโ local HTTP server
Source ยท PDF ยท History ยท Comments (serves /app + /latest.pdf)
The WASM engines need DOM/Worker globals, so the server hosts a hidden headless
Chromium as its compile worker; the workspace you open is a lightweight React +
pdf.js app with no WASM in it. See docs/ARCHITECTURE.md.
flowchart LR
H["๐ค You<br/>Source ยท PDF ยท History ยท Comments"]
A["๐ค Claude Code<br/>+ review / author agents"]
H <-->|"select text โ<br/>anchor comment"| SRV["Preview server<br/>HTTP + WebSocket ยท serves /app"]
A -->|"7 MCP tools"| MCP["MCP server<br/>render_preview ยท show_diff ยท list_checkpoints<br/>check / resolve / add / reply_comment"]
SRV --> CO["Compile coordinator<br/>(serialized)"]
MCP --> CO
A -. edits source .-> FILES[("Paper files ยท git repo")]
FILES --> WATCH["File watcher"] --> CO
CO --> ENG["WASM busytex<br/>(headless Chromium)"] --> PDF["/latest.pdf"]
PDF -. live reload .-> H
CO --> CK["git checkpoints<br/>(hidden ref) โ History"]
SRV <--> CJSON[(".latex-preview/<br/>comments.json")]
MCP <--> CJSON
CJSON -->|"check_comments<br/>(your accepted asks)"| A
Both front doors โ you in the workspace, agents through the 7 MCP tools โ meet at
the same coordinator, comment store, and git history. You act on the rendered
document (anchor a comment); Claude acts on the source (reads your comments via
check_comments, edits, resolve_comment). That shared substrate is what makes
the comment loop, the review workflow, and traceable history possible.
Requirements
Node 20.19+ (the floor chokidar and playwright actually need; the server checks at startup and says so)
Playwright's Chromium (installed automatically; ~150โ300 MB) โ or set it to reuse
your installed Chrome.
~650 MB disk for the one-time WASM TeX Live assets โ all of it fetched on the
first run, in three package sets (basic 87 MB, recommended 190 MB, extra 324 MB,
plus the 31 MB engine). A normal paper only loads the basic set; the larger two
sit on disk until something needs them. Cached per user, not per install, so
upgrading MagicTeX doesn't re-download them. Override the location with
MAGICTEX_ASSETS_DIR.
A local TeX install is optional. See below for when it matters.
Do I need a local TeX distribution?
No โ the bundled WASM engine compiles with nothing installed, which is the whole
point. But it ships a subset of TeX Live, so some things aren't in it: svg,
most venue document classes, and various less common packages. When one is
missing you'll be told, rather than handed a silently wrong PDF.
Install a distribution when you want output that matches Overleaf exactly.
MagicTeX picks it up on its own โ no configuration:
latexmk is what MagicTeX looks for on PATH, but it isn't something you
install on its own โ it's a driver script that comes inside the distributions
above. Check with latexmk -version, not which latexmk: latexmk is a
Perl script, and MiKTeX puts latexmk.exe on your PATH without shipping a
Perl to run it with โ so the file is found and still cannot execute. On macOS
you may need eval "$(/usr/libexec/path_helper)" or a fresh terminal first.
Every compile tells you which one ran โ xelatex ยท system or xelatex ยท wasm.
Development
bash
npm install
npm run typecheck # tsc for the server and the UI
npm run build:ui # build the React workspace to ui/dist
npm test# the unit suite โ engine-free, no browser, seconds
npm start # run the server on stdio (for a manual MCP client)
Two tiers, on purpose. npm test covers the comment store, anchor matching, line
and column geometry, the history repo, asset paths, compile-log classification, the
preview server's shutdown, and an MCP workflow E2E โ all without a browser or a TeX
engine, so it stays fast and deterministic. CI (.github/workflows/ci.yml) runs
typecheck + UI build + that suite on Node 20 and 22 for every push and pull request.
The things a unit test structurally cannot see โ highlight geometry at several zoom
levels, what a failed render actually tells the reader, whether shutting down closes
the server and warns any open window โ live in scripts/smoke-*.mjs and run against
a real browser and a real compile in .github/workflows/smoke-macos.yml. Each of
those exists because something shipped broken that the unit suite was green through.
Please keep both green and add coverage with changes.
Documentation
User guide โ everyday use, the comment loop, Visual mode, the
file tree, getting your paper into Overleaf, package coverage.
The agent loop โ comments as triggers, running it hands-off with
/loop, the reviewer โ gate โ resolver workflow, and โก /ultra-agents.
Roadmap โ what's shipped for concurrent agents, and what real
parallel multi-agent editing still needs.
Architecture โ why a headless browser, what every module does,
the compile flow.
All four are translated into the same 8 languages as this README โ each page has its own
language switcher at the top.
Roadmap
Multiple Claude Code sessions can already work the same project concurrently without
corrupting comments or the checkpoint history (see docs/ROADMAP.md)
โ true parallel multi-agent editing (reviewer/author/defender on their own git branches,
merged back together) is the next milestone.
Sponsor this project
MagicTeX is free and open source (AGPL-3.0). If it saves you time on your papers,
please consider sponsoring the project โ
it funds continued development. A โญ on the repo helps too.
Thanks to David Turnbull, who told me the story of Knuth spending ten years
building his own typesetter rather than accept how his book looked โ the story this
project keeps arguing with. And to the maintainers of
texlyre-busytex, without whose WASM
TeX Live none of this would run locally at all.