pymupdf4llm-mcp
0
pymupdf4llm-mcp is an MCP Server designed to export PDF files to Markdown format, tailored for use with large language models (LLM). It is suitable for integration with various MCP clients and supports different modes like stdio and sse.
This package has been merged into official repo, please use the official repo instead.
https://github.com/pymupdf/pymupdf4llm-mcp
pymupdf4llm-mcp
MCP Server for pymupdf4llm, best for export PDF to markdown for LLM.
- Github repository: https://github.com/ai-zerolab/pymupdf4llm-mcp/
- Documentation https://ai-zerolab.github.io/pymupdf4llm-mcp/
Quick Start
Run the following command to run the MCP server:
uvx pymupdf4llm-mcp@latest stdio # stdio mode
# or
uvx pymupdf4llm-mcp@latest sse # sse mode
Configure your cursor/windsurf/... and other MCP client to this server:
{
"mcpServers": {
"pymupdf4llm-mcp": {
"command": "uvx",
"args": [
"pymupdf4llm-mcp@latest",
"stdio"
],
"env": {}
}
}
}