firecrawl parse Turn a local document into clean markdown on disk. Supports PDF, DOCX, DOC, ODT, RTF, XLSX, XLS, HTML/HTM/XHTML . When to use You have a file on disk (not a URL) and want its text as markdown User drops a PDF/DOCX and asks what it says, or to summarize it Use scrape instead when the source is a URL Quick start Always save to .firecrawl/ with -o — parsed docs can be hundreds of KB and blow up context if streamed to stdout. Add .firecrawl/ to .gitignore . mkdir -p .firecrawl
File → markdown
firecrawl parse ./paper.pdf -o .firecrawl/paper.md
AI summary
firecrawl parse ./paper.pdf -S -o .firecrawl/paper-summary.md
Ask a question about the doc
firecrawl parse ./paper.pdf
-Q
"What are the main conclusions?"
\
-o
.firecrawl/paper-qa.md
Then
head
,
grep
,
rg
etc., or incrementally read the file - don't load the whole thing at once.
Options
Option
Description
-S, --summary
AI-generated summary
-Q, --query