The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the PDF Reader MCP listing page.
Any file → clean Markdown for AI agents.
PDF, Word, PowerPoint, Excel, EPUB, HTML, images, audio/video. A fast Rust engine running on your machine, available as an MCP server and a CLI. No API key.
Install · Benchmarks · Tools · CLI · Formats · Docs
Formerly pdf-reader-mcp / Citra. @sylphx/pdf-reader-mcp and @sylphx/citra still install and run anymd.
<!-- page 3 --> citation anchors, a small front-matter header, and compact tables. A token budget and a cursor keep large documents within your agent's context.search looks across all of them.Every MCP client runs the same command, npx -y @sylphx/anymd. Node 18+ is the only requirement; npm installs the native binary for your platform.
or in ~/.codex/config.toml:
or in .vscode/mcp.json:
Add to claude_desktop_config.json (Settings → Developer → Edit Config):
Any client that speaks MCP over stdio: command npx, args ["-y", "@sylphx/anymd"]. To keep the server inside one folder, add --allow-dir=/path/to/docs.
Twelve real documents (papers, a two-column paper, statistical tables, CJK, a form, a borderless-table invoice, plus DOCX, PPTX, XLSX, EPUB, and a Wikipedia page), run on a GitHub-hosted runner with 4 CPUs:
| anymd | docling | MarkItDown | kreuzberg | pdftotext | |
|---|---|---|---|---|---|
| Total time, 12 documents | 0.40 s | 964 s | 22.5 s | 2.8 s | 0.36 s ¹ |
| Sentences intact (12) | 12 | 11 | 5 | 12 | 12 |
| Table rows recovered (26) | 26 | 25 | 15 | 0 | 0 |
| Reading order correct (5) | 5 | 3 | 3 | 5 | 5 |
| Output tokens (o200k) | 98.6k | 126.4k | 144.7k | 125.0k | 74.1k ¹ |
¹ pdftotext reads PDFs only and outputs plain text without tables.
On the 15-page Attention Is All You Need paper, anymd takes 0.13 s, docling 76 s, and MarkItDown 3.0 s, and MarkItDown glues the words together ("dominantsequencetransductionmodels"). On the Wikipedia article, anymd's main-content extraction uses 21.7k tokens; docling uses 37.6k, kreuzberg 51.7k, and MarkItDown 54.6k.
Each tool runs as a fresh process, and every number is the median of 3 runs (docling runs once, after its models are warmed up). Tokens are counted with o200k_base. Sentences intact counts reference sentences that come out verbatim; glued words or split columns fail the check. Table rows counts ground-truth rows that come out as one Markdown table row with the cells in order. The method, corpus, ground truth, raw results, and scripts are in bench/, and the Benchmark workflow re-runs everything on GitHub-hosted runners.
The official @modelcontextprotocol/server-pdf is left out of the table because it has no headless text path. It renders PDFs in an interactive viewer, and its read_pdf_bytes tool returns base64-encoded bytes.
anymd exposes three tools.
| Tool | Use it to | Key arguments |
|---|---|---|
read | Turn a file, URL, or folder into Markdown | source, pages ("1-5,8"), max_tokens (default 20000), cursor, ocr, transcript |
search | Find text across files, folders, and URLs | query, sources, mode (auto · literal · ranked), glob, max_results |
inspect | Go deeper on a PDF | operation: render_page, extract_regions, ocr_pages, structure (JSON with geometry), compare, inspect |
A read answer looks like this:
search answers with one line per hit:
If nothing matches exactly, search falls back to BM25-ranked passages, so a question like "how does bidirectional pretraining work" still finds the right page.
The pdf-reader-mcp tool names (read_pdf, search_pdf, pdf_evidence, pdf_compare) still work for this major version. They no longer appear in tools/list.
The same binary is a command-line converter, like MarkItDown but much faster:
Run with no arguments from an MCP client (piped stdin), or as anymd mcp, and it serves MCP over stdio.
| Input | What you get |
|---|---|
Reading-order Markdown: headings, paragraphs, lists, tables, sub/superscripts, <!-- page N --> markers, bookmarks as an outline. Running headers and page numbers are removed. Image-only pages are OCR'd when tesseract is installed. | |
Word .docx | Headings, bold/italic, links, nested lists, tables with merged cells, footnotes, equations as LaTeX |
PowerPoint .pptx | One section per slide in deck order, titles, bullets, tables, chart data, speaker notes |
Excel .xlsx .xls .ods · CSV/TSV | One table per sheet, dates as ISO strings, capped at 2,000 rows per sheet |
| EPUB | One section per chapter in spine order, plus title and author |
| HTML and URLs | The main article only: navigation, cookie banners, and sidebars are dropped. Relative links are resolved, and code keeps its language. |
| Markdown, text, JSON | Returned unchanged, with pagination |
| Images | Dimensions and EXIF (camera, date, GPS), plus OCR text when tesseract is installed |
| Audio / video | Duration, streams, chapters, embedded and sidecar subtitles (via ffprobe/ffmpeg). Local whisper.cpp transcript with transcript: true. |
For PDFs, anymd reads glyph positions rather than text runs. Glyphs are grouped into lines by baseline, which tolerates super- and subscripts. Word spaces come from the gaps between glyphs, measured against the font size and adjusted for letter tracking. A column-aware XY cut finds gutters between running text. Rows whose cells line up become pipe tables. Pages are processed in parallel and isolated from each other, so one malformed page never fails the whole document. The other formats are parsed natively in Rust (zip/XML, calamine, html5ever); no Python, LibreOffice, or cloud service is involved.
--allow-dir=<path> (repeatable) or MCP_PDF_ALLOWED_DIRS confines the server to the directories you list.See SECURITY.md to report a vulnerability.
repomap gives your AI agent a map of your codebase: a code graph, search, call paths, change impact, and a graph UI. Like anymd, it runs locally, needs no API key, and is MIT licensed.
MIT © Sylphx