tex-mcp-web
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@tex-mcp-webshow paper with comments"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
tex-mcp-web
Agentic-first PDF review for LaTeX papers, with Claude Code as the author.
Hard fork of queelius/scholia v0.6.1 (MIT). Renamed and independently developed since.
You read the rendered PDF in your browser. You drop comments on paragraphs, sections, or the paper as a whole. Claude Code reads the queue (via MCP), edits the source, and replies with what changed. The PDF rebuilds in front of you. Repeat until done.
Why this exists
tex-mcp-web is deliberately not an editor, not an IDE, not an Overleaf clone. The agent (Claude Code) is already smarter at reading source, parsing LaTeX, grepping citations, and editing files than any tool we could build. So we don't try.
tex-mcp-web is a substrate for the agentic-first writing workflow:
A live PDF preview the human can watch and gesture at.
A comment queue anchored to PDF regions, sections, source ranges, or the paper as a whole.
A structured-error compile oracle the agent calls when it wants ground truth.
That's it. Three responsibilities. Anything that re-implements something the agent does well (file parsing, log analysis, semantic understanding) was deliberately removed.
Related MCP server: overleaf-mcp
Install
Requires Python 3.10+ and latexmk (or pdflatex/xelatex/lualatex/pandoc) on your PATH.
pip install "tex-mcp-web[mcp] @ git+https://github.com/MiiKiyoshi/tex-mcp-web"The [mcp] extra adds the MCP server for Claude Code; [image] adds PDF-region rendering (pymupdf). Plain tex-mcp-web @ git+... installs the web viewer only.
Quick start
cd my-paper/
tex-mcp-web init --main main.tex # writes .tex-mcp-web.yaml (main file, port)
tex-web # starts the daemon at http://localhost:8765In the browser:
The PDF appears on the left, the comments sidebar on the right.
Select text in the PDF to anchor a comment to that region. SyncTeX maps the selection back to a source line range automatically.
Shift-click-drag to draw a rectangle around any region (figures, equations, whitespace) where text selection doesn't reach. Same
pdf_regionanchor; the agent can render exactly that region withimage(comment_id=...).Suggest a rewrite alongside any comment: the compose dialog has an optional
{old, new}block. When you select text first, "old" pre-fills with the selected text, so you only type the replacement. The agent gets a structured edit it can apply directly."+ Note" in the top bar for a paper-level comment ("the abstract is too long").
Sections tab is the table of contents: numbered headings, click to jump, "+ comment" for section-level comments.
Compile tab lists compile errors and warnings; tab badges carry the open-comment and error/warning counts.
Reply / Resolve / Dismiss are inline forms in each comment, not modals.
Keyboard navigation:
j/kstep through comments,ropens a reply form,Ropens resolve,dopens dismiss,Esccancels,\collapses the sidebar.Ctrl/Cmd + wheel zooms the PDF around the cursor.
The Claude Code workflow
Register the MCP server from the paper directory (it locates .tex-mcp-web.yaml by searching upward from its working directory):
cd my-paper/
claude mcp add tex-mcp -- tex-mcpThis exposes 7 tools:
Tool | What it does |
| Paper state in one call: sections (with line ranges), the comments queue, last-compile cache, main-file paths. |
| Recompile and return structured errors with source context. |
|
|
| Render PDF region as PNG. Modes: |
| Deep-dive: source slice + rendered image + scoped comments for one section in one call. |
| Workflow primer for agent-initiated review. Returns guidance; the agent then files comments back as |
| Scroll the running viewer to a section / page / line / label. |
When a compile finishes, the WebSocket broadcasts {"type": "compiled", ..., "pages_changed": [3, 7]} so the agent can verify only the pages that actually shifted, not re-render the whole document.
Notice what's absent: there's no tex-mcp-web_labels(), no tex-mcp-web_citations(), no tex-mcp-web_environments(). Use Grep. The agent is better at it than we are.
Visual review is the killer mode of image. Claude is multimodal; pure text won't tell it whether a figure caption attaches to the right figure or whether an equation rendered correctly. The comment_id mode is the fast path: human draws a rectangle around a figure, files the comment, agent renders that region, sees what the human pointed at, fixes the LaTeX.
Active review runs the loop in either direction:
You: [drop 8 comments on the PDF; for "rephrase X" comments, fill
in the suggested rewrite (agent applies it directly)]
"Process the open comments."
Claude: paper() # see comments + sections
for each: Read/Edit source; if suggestion present, apply it
comment(action="resolve", id=..., summary="...")
compile() # verify build
You: [PDF rebuilds; reply / dismiss as needed]
You: "Audit my methods section for notation drift."
Claude: audit(focus="math") # guidance primer
Read paper.tex; image() to inspect rendering
comment(action="add", author="claude",
anchor=..., text="...", suggestion=...)
# filed back into the queue, distinct visual treatmentComment anchors
Four kinds, with different staleness behavior:
Anchor | Use when | Staleness handling |
| Reading the PDF and pointing at a paragraph. | SyncTeX resolves to source; a content snippet is captured; if Claude rewrites that region, the snippet match fails and the comment is flagged |
| "Expand the methods section." | Resolved by section title or |
| When the agent already knows the lines (most common from MCP). | Snippet-matched, like |
| Global note about the paper. | Never stale. |
CLI
tex-mcp-web # serve (default)
tex-mcp-web init # scaffold .tex-mcp-web.yaml
tex-mcp-web compile # one-shot compile, structured errors
tex-mcp-web goto "Methods" # tell the running viewer to scroll
tex-web # alias for `tex-mcp-web serve`
tex-mcp # run the MCP server (stdio)That's the whole CLI. Comment management lives in the browser (for humans) and in the MCP tools (for the agent). There is no tex-mcp-web comment add from the shell because nobody types that.
What changed in v0.6.0 (active review)
The framing shifted from "human reviews; agent dispatches" to "review goes both ways":
Suggested rewrites. Comments now optionally carry a structured
{old, new}block. The agent applies the rewrite directly instead of parsing prose. Browser pre-fills "old" with the selected PDF text so the human only types the replacement.audit(focus=...)primes agent-initiated review. The agent reads the paper, files findings back asauthor="claude"comments, and the human steps through them.Refactor: anchors resolve themselves. The dispatch that used to live in three switch statements (
server._resolve_anchor,imaging.resolve_image_target, staleness check) is now methods on each anchor type. Adding a new anchor kind is a 30-line addition to one file.
What changed in v0.5.x
Aggressive simplification with the agentic-first frame:
Dropped the CLI comment surface entirely. The agent and the browser are the only sane places to manage comments.
Dropped
tags,reopen, theErrorstab. Tags were noise, reopen was Github-imitation, the Errors tab duplicated information the topbar already shows.Dropped
labels/citations/inputsfrompaper(). UseGrep.Folded
commentsintopaper(include_comments=True)for one-call orientation.Inline reply / resolve / dismiss forms in the viewer, not
prompt()dialogs.Compile lock prevents the watcher and
compile()from racing.Visual review via
image()with four modes (page, page+bbox, source range, comment id). Shift-click-drag selects arbitrary rectangles for figures.
Configuration
.tex-mcp-web.yaml:
main: paper.tex
watch: ["*.tex", "*.bib", "*.md"]
ignore: ["*_backup.tex"]
compiler: auto # auto | latexmk | pdflatex | xelatex | lualatex | pandoc
port: 8765Comments live in .tex-mcp-web/comments.json. git add it to keep your review history with the paper.
License
MIT. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/MiiKiyoshi/tex-mcp-web'
If you have feedback or need assistance with the MCP directory API, please join our Discord server