Extract and read text from PDF files using PyMuPDF.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill pdfreader --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Pdfreader?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-pdfreader)More formats (shields.io, HTML) on the badges page.
---
name: PDF Reader Skill for OpenClaw
description: Extract and read text from PDF files using PyMuPDF.
---
# PDF Reader Skill for OpenClaw
Extract and read text from PDF files using PyMuPDF.
## Installation
```powershell
pip install pymupdf
```
## Usage
```powershell
# Extract text (first 10 pages by default)
python pdf_reader.py "path/to/file.pdf" 10
# Output to JSON file (for reading)
python pdf_reader.py "path/to/file.pdf" 10 --output=extracted.json
# Read specific number of pages
python pdf_reader.py "path/to/file.pdf" 5
```
## Features
- Extracts text from any PDF
- Supports large files
- Outputs JSON for AI reading
- Handles encoding issues
- Shows metadata (title, author, etc.)
## Security Restrictions
For safety, the script enforces:
- **Input files:** Must be `.pdf` files within the current working directory
- **Output files:** Must be `.json` files within the current working directory
- No path traversal (`../`) allowed
- Files can only be read/written in the directory where the script runs
## Files
- `pdf_reader.py` - Main Python script
- `SKILL.md` - This documentation
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!