pdf-processing

pdf-processing is a skill for Claude Code, Codex from Jignesh-Ponamwar/skills-mcp. It costs 62 tokens per session (954 once invoked), scanned A, original, Apache-2.0.

A tool for working with PDF documents, which are fixed-layout digital documents. It can extract text, tables, and metadata, fill forms, merge files, split pages, and convert content into structured data.

In plain words
What is it for?
Use it to read PDFs, extract tables, inspect document details, fill forms, combine or separate files, and process scanned documents when supported.
Why use it?
It removes the need to handle common PDF tasks manually or use a different tool for each operation.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to read PDFs, extract tables, inspect document details, fill forms, combine or separate files, and process scanned documents when supported.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jignesh-ponamwar/skills-mcp/pdf-processing
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Jignesh-Ponamwar/skills-mcp --skill pdf-processing
Clone the repo
git clone --depth 1 https://github.com/Jignesh-Ponamwar/skills-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pdf-processing

README.md
[![agentmods](https://agentmods.dev/badge/skills/jignesh-ponamwar/skills-mcp/pdf-processing.svg)](https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/pdf-processing)
Your own site
<a href="https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/pdf-processing"><img src="https://agentmods.dev/badge/skills/jignesh-ponamwar/skills-mcp/pdf-processing.svg" alt="Measured on agentmods" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 954 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00062 $0.00954
Opus 5 $0.00031 $0.00477
Sonnet 5 $0.00012 $0.00191
Haiku 4.5 $0.00006 $0.00095

Measured 7d ago against content hash 4b3a4745e3c6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

pdf-processing scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/extract.py, scripts/fill_form.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skill_mcp/skills_data/pdf-processing/SKILL.md · 125 lines

How it starts

The opening of the file, as written. The whole thing — 125 lines — stays where its author put it; the contents beside it link to each section on GitHub.

PDF Processing Skill

Overview

This skill handles all PDF operations: text extraction, table parsing, form filling, merging, splitting, and metadata extraction.

Step-by-Step Guidance

1. Identify the Operation

Determine what the user needs:

  • Text extraction: Read content from a PDF into plain text or markdown
  • Table extraction: Pull structured tabular data into CSV/JSON
  • Form filling: Write values into fillable PDF form fields
  • Merge: Combine multiple PDFs into one document
  • Split: Divide a PDF into separate pages or sections
  • Metadata: Extract author, creation date, page count, etc.

2. Choose the Right Library

For Python environments:

  • pypdf (formerly PyPDF2): text extraction, merging, splitting, metadata - pure Python, no system deps
  • pdfplumber: best for tables and layout-aware extraction
  • pymupdf (fitz): fastest, handles scanned PDFs with OCR via Tesseract
  • reportlab: generate new PDFs or fill forms programmatically
  • pdfrw: low-level PDF manipulation, ideal for form filling

3. Text Extraction

import pypdf

reader = pypdf.PdfReader("document.pdf")
text = "\n\n".join(page.extract_text() for page in reader.pages)
print(text)

For layout-preserving extraction:

import pdfplumber

with pdfplumber.open("document.pdf") as pdf:
    for page in pdf.pages:
        print(page.extract_text(layout=True))

4. Table Extraction

import pdfplumber

with pdfplumber.open("document.pdf") as pdf:
    for page in pdf.pages:
        tables = page.extract_tables()
        for table in tables:
            for row in table:
                print(row)

5. Merging PDFs

import pypdf

merger = pypdf.PdfMerger()
for path in ["file1.pdf", "file2.pdf", "file3.pdf"]:
    merger.append(path)
merger.write("merged.pdf")
merger.close()

6. Splitting a PDF

import pypdf

reader = pypdf.PdfReader("document.pdf")
for i, page in enumerate(reader.pages):
    writer = pypdf.PdfWriter()
    writer.add_page(page)
    with open(f"page_{i+1}.pdf", "wb") as f:
        writer.write(f)

Read the full file on GitHub · 125 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 125 lines · 62 tokens per session scan A 4b3a4745e3c6

Subscribe to this mod's changes

pdf-processing is a skill published in the GitHub repository Jignesh-Ponamwar/skills-mcp (7 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 62 tokens to every session and 954 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

api2pdf-automation

Automate Api2pdf tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/awesome-claude-skills · 29 tokens

google-apps-script

Build Google Apps Script automation for Sheets and Workspace. Custom menus, triggers (onEdit / time-driven / form submit), dialogs, sidebars, email batches, PDF export, external API. Use whenever the user wants to automate a Google Sheet, build a Sheets menu / sidebar / dialog, hit a Sheets row from email or a…

jezweb/claude-skills · 89 tokens

pdf-document-generation-expert

Expert guide for PDF generation and document processing (React PDF, Puppeteer, jsPDF, pdf-lib) / Panduan ahli generasi PDF dan pemrosesan dokumen (React PDF, Puppeteer, jsPDF, pdf-lib).

roedyrustam/vibes-plug · 53 tokens

llama-parse

Use this skill to parse complex documents (PDFs, Word documents, PowerPoint presentations, Excel spreadsheets, or images) into clean Markdown or structured JSON using the LlamaParse API. Make sure to use this skill whenever the user asks to extract tables from PDFs, handle complex document structures (multi-column…

hankunpeng/skills · 97 tokens

cc-api-design-safety

A safety guide for designing REST API responses and creating downstream files such as Excel, CSV, PDF, or reconciliation files.

doccker/cc-use-exp · 74 tokens

streaming-export-safety

A safety guide for exporting large Excel, CSV, JSON, or PDF files. It also covers converting many records and building large data objects in memory.

doccker/cc-use-exp · 65 tokens