Server data from the Official MCP Registry
MCP server for reading PDFs using PyMuPDF. Supports local files and URLs.
MCP server for reading PDFs using PyMuPDF. Supports local files and URLs.
This MCP server for reading PDFs via PyMuPDF is well-structured with proper error handling and appropriate input validation. No authentication is required, but this is reasonable given the server operates on local files and user-provided URLs. The main security concerns are minor: lack of input validation on max_pages/max_bytes parameters, absence of URL validation before download, and potential for SSRF via arbitrary URL downloads. These are low-severity issues that do not significantly impact the overall security posture. Supply chain analysis found 7 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.
7 files analyzed · 13 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-penny4nonsense-mcp-pymupdf": {
"args": [
"mcp-pymupdf"
],
"command": "uvx"
}
}
}From the project's GitHub README.
An MCP server for reading PDFs using PyMuPDF. Supports local files and URLs.
pip install mcp-pymupdf
read_pdfExtract text from a PDF file or URL.
{
"source": "/path/to/file.pdf",
"max_pages": 50,
"max_bytes": 200000
}
get_pageExtract text from a specific page range.
{
"source": "https://example.com/paper.pdf",
"start_page": 3,
"end_page": 8
}
get_metadataRetrieve PDF metadata without reading full text.
{
"source": "/path/to/file.pdf"
}
Add to your Claude Desktop config:
{
"mcpServers": {
"pdf": {
"command": "mcp-pymupdf"
}
}
}
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.