guide10 min read2h ago

Best PDF Skills for Claude in 2026: Extract, Create, Fill Forms

The best PDF skills for Claude in 2026, led by Anthropic's official PDF skill, the most-used in the library. Extract text and tables, create and merge PDFs, fill forms, plus how skills differ from PDF MCP servers.

Best PDF Skills for Claude in 2026: Extract, Create, Fill Forms
pdf skillsclaude skillsagent skillsdocument processingpdf extractionanthropic skillspdfclaude

TL;DR — The Best PDF Skills for Claude in 2026

PDF skills teach Claude to create, fill, edit, and extract data from PDF files — no external service required. The star is Anthropic's official PDF skill, the most-used skill in the entire public skills library, which handles text and table extraction, new-document creation, merging and splitting, and form filling. It ships alongside the docx, pptx, and xlsx document skills. This guide covers what the PDF skill does, how it differs from a PDF MCP server, how to install it, and the real document workflows it unlocks.

Curated from the Claude skills category on Skiln · Updated daily

Table of Contents

  1. What Are PDF Skills for Claude?
  2. The Official Anthropic PDF Skill
  3. What the PDF Skill Can Do
  4. The Full Document Skills Family
  5. PDF Skill vs PDF MCP: Which Do You Need?
  6. How to Install the PDF Skill
  7. Real PDF Workflows with Claude
  8. Community PDF Skills Worth Knowing
  9. Frequently Asked Questions

What Are PDF Skills for Claude?

A PDF skill is an Agent Skill — a folder of instructions, scripts, and resources that Claude loads on demand to get better at a specialized task. When a PDF skill is available, Claude gains a reliable, tested way to work with PDF files: creating them, editing them, extracting their contents, and filling their forms. Instead of improvising with whatever library it guesses at, Claude follows the skill's proven recipe.

Skills were introduced by Anthropic as a way to package expertise. At its simplest, a skill is a directory containing a SKILL.md file with YAML frontmatter (a name and description) plus any helper scripts. Claude reads the description to decide when the skill applies, then loads the full instructions only when needed. If you're new to the concept, our explainer on what Claude skills are walks through the fundamentals.

The Official Anthropic PDF Skill

The most important PDF skill is the one Anthropic ships itself. It lives in the public github.com/anthropics/skills repository under skills/pdf, and it is — by Anthropic's own description — the most-used skill in the entire library. That popularity is earned: working with PDFs is one of the most common real-world document tasks, and the skill turns a historically painful format into something Claude handles cleanly.

The repository contains around 17 official skills as of 2026, spanning creative applications, technical tasks, and enterprise workflows. The document skills — pdf, docx, pptx, and xlsx — are the workhorses of the set. All are free and open source.

What the PDF Skill Can Do

The PDF skill provides a comprehensive PDF manipulation toolkit. Its documented capabilities:

  • Extract text and tables. Pull the readable content out of a PDF, including structured tables you can convert to CSV or markdown.
  • Create new PDFs. Generate a formatted PDF from scratch — reports, letters, invoices — programmatically.
  • Merge and split documents. Combine several PDFs into one, or break a large document into parts.
  • Fill and edit forms. Read the fields in a fillable PDF and populate them with your data, then save the completed file.

Because the skill runs inside Claude's own environment, it works on files Claude can already access — no external API keys, no separate server process. That simplicity is a big part of why it's the most-used skill.

The Full Document Skills Family

The PDF skill rarely travels alone. Anthropic ships a coordinated set of document skills, so Claude can move between formats fluidly:

SkillWhat It DoesBest For
pdfCreate, edit, extract, fill forms, merge/splitReports, forms, extraction
docxCreate and edit Word documentsLetters, contracts, long-form docs
pptxBuild and edit PowerPoint decksSlides, pitch decks
xlsxCreate and edit Excel spreadsheetsData tables, financial models

A common combined workflow: extract a table from a PDF with the PDF skill, drop it into a spreadsheet with the xlsx skill, and summarize the findings in a Word doc with docx — all in one conversation.

PDF Skill vs PDF MCP: Which Do You Need?

This is the question that trips people up. Skills and MCP servers solve related but distinct problems:

  • A PDF skill teaches Claude how to manipulate PDF files it can already reach. It runs inside Claude's environment, needs no separate process, and is ideal for creating, editing, and extracting from local documents.
  • A PDF MCP server (or the general Filesystem MCP) exposes tools over the Model Context Protocol, which is the right choice when you need to reach PDFs stored in an external system, or when you want the same capability available to any MCP client.

For most local PDF work — "read this report and extract the tables," "fill this form," "merge these three files" — the skill is simpler and faster. If you need Claude to fetch documents from a remote store or a service like Notion, reach for an MCP. Our skills vs MCP vs plugins decision guide breaks the choice down case by case.

How to Install the PDF Skill

Installation depends on your client, but the source is always the same repository. The general approach:

  1. Get the skill. Clone github.com/anthropics/skills and locate the skills/pdf folder, which contains the SKILL.md and its helper scripts.
  2. Place it where your client looks for skills. For Claude Code, that's your skills directory (for example ~/.claude/skills/). Copy the pdf folder in whole.
  3. Let Claude discover it. Claude reads each skill's SKILL.md frontmatter and loads the full skill only when a PDF task comes up. You don't invoke it manually — describe the task and Claude reaches for the skill.

# Example: adding the official document skills to Claude Code git clone https://github.com/anthropics/skills cp -r skills/skills/pdf ~/.claude/skills/pdf cp -r skills/skills/xlsx ~/.claude/skills/xlsx

For a step-by-step walkthrough that applies to any skill, see how to install Claude skills.

Real PDF Workflows with Claude

  • Report to spreadsheet. "Extract every table in this quarterly report PDF and give me a single clean CSV." The PDF skill pulls the tables; you get structured data.
  • Form automation. "Fill this application PDF with the details in my profile and save it as applicant-form-final.pdf." Repetitive paperwork, done once.
  • Document assembly. "Merge these five invoice PDFs into one file, in date order." Splitting works the same way in reverse.
  • Contract review prep. "Extract the full text of this contract PDF so I can ask you questions about specific clauses." Turns a flat PDF into a readable, queryable document.
  • Generate on demand. "Create a one-page PDF summary of these results with a title, a table, and a short conclusion." The skill builds the document from scratch.

Community PDF Skills Worth Knowing

Beyond the official skill, the community has published variations for specialized needs — OCR-focused skills for scanned documents, skills tuned for academic paper layouts, and skills that pair PDF extraction with summarization templates. Quality varies, so check the SKILL.md and any scripts before installing, just as you would with any code you run.

If you want to go deeper on skills generally, our roundups of the top Claude skills of 2026 and best skills for writers are good next reads.

Building your Claude skill stack? Skiln indexes Claude skills alongside MCP servers, agents, and hooks — searchable by task, popularity, and compatibility.

Browse Now →

Frequently Asked Questions

What is a PDF skill for Claude?

A PDF skill is an Agent Skill — a folder of instructions and scripts Claude loads on demand — that teaches Claude how to work with PDF files. The official Anthropic PDF skill lets Claude create new PDFs, fill and edit existing ones, extract text and tables, and merge or split documents. It is the most-used skill in Anthropic's entire public skills library.

Is the PDF skill the same as a PDF MCP server?

No, though they overlap. A skill is a bundle of instructions and helper scripts that runs inside Claude's own environment to manipulate files it can already access. An MCP server is a separate process that exposes tools over the Model Context Protocol, often to reach an external service. For local PDF creation and editing, the skill is usually simpler; for pulling PDFs from a remote system, an MCP or the Filesystem MCP is the better fit.

Where do I get the official PDF skill?

The PDF skill lives in the public github.com/anthropics/skills repository, in the skills/pdf subfolder, alongside the docx, pptx, and xlsx document skills. All of them are free and open source. You can also install skills through Claude's skill system depending on your client, or copy the SKILL.md and scripts into your own skills directory.

Can the PDF skill extract tables from a PDF?

Yes. The PDF skill includes a comprehensive toolkit for extracting text and tables from PDFs, which is one of its most common uses. You can ask Claude to pull a table out of a report and turn it into CSV or markdown, or to extract every table across a multi-page document into a structured format.

Can Claude fill out PDF forms with a skill?

Yes. Handling forms is one of the PDF skill's documented capabilities. Claude can read the form fields in a fillable PDF and populate them with values you provide, then save the completed document. This is useful for repetitive paperwork where the same form gets filled with different data.

Are Claude skills free?

The official skills in the anthropics/skills repository are free and open source. As of 2026 Anthropic publishes around 17 official skills covering documents, creative work, and technical tasks. Using a skill consumes normal Claude usage; there is no separate skill fee. Community skills are typically free and open source as well.

What is the difference between a skill and an MCP server?

A skill is a folder of instructions, scripts, and resources that Claude loads dynamically to get better at a specialized task — it runs within Claude's context. An MCP server is an external program that exposes tools to any MCP client over a shared protocol. Skills teach Claude how to do something; MCP servers give Claude new things to connect to. Our decision guide compares skills, MCP servers, and plugins in depth.

Where can I browse more Claude skills?

Skiln indexes Claude skills alongside MCP servers, agents, and hooks. Start with our guide to what Claude skills are, browse the top skills of 2026, or filter the directory by the skills category to find document, coding, and creative skills.


Last updated: July 02, 2026 · Skiln tracks Claude skills and MCP releases daily across 13 source registries.

Frequently Asked Questions

What is a PDF skill for Claude?
A PDF skill is an Agent Skill — a folder of instructions and scripts Claude loads on demand — that teaches Claude how to work with PDF files. The official Anthropic PDF skill lets Claude create new PDFs, fill and edit existing ones, extract text and tables, and merge or split documents. It is the most-used skill in Anthropic's entire public skills library.
Is the PDF skill the same as a PDF MCP server?
No, though they overlap. A skill is a bundle of instructions and helper scripts that runs inside Claude's own environment to manipulate files it can already access. An MCP server is a separate process that exposes tools over the Model Context Protocol, often to reach an external service. For local PDF creation and editing, the skill is usually simpler; for pulling PDFs from a remote system, an MCP or the Filesystem MCP is the better fit.
Where do I get the official PDF skill?
The PDF skill lives in the public github.com/anthropics/skills repository, in the skills/pdf subfolder, alongside the docx, pptx, and xlsx document skills. All of them are free and open source. You can also install skills through Claude's skill system depending on your client, or copy the SKILL.md and scripts into your own skills directory.
Can the PDF skill extract tables from a PDF?
Yes. The PDF skill includes a comprehensive toolkit for extracting text and tables from PDFs, which is one of its most common uses. You can ask Claude to pull a table out of a report and turn it into CSV or markdown, or to extract every table across a multi-page document into a structured format.
Can Claude fill out PDF forms with a skill?
Yes. Handling forms is one of the PDF skill's documented capabilities. Claude can read the form fields in a fillable PDF and populate them with values you provide, then save the completed document. This is useful for repetitive paperwork where the same form gets filled with different data.
Are Claude skills free?
The official skills in the anthropics/skills repository are free and open source. As of 2026 Anthropic publishes around 17 official skills covering documents, creative work, and technical tasks. Using a skill consumes normal Claude usage; there is no separate skill fee. Community skills are typically free and open source as well.
What is the difference between a skill and an MCP server?
A skill is a folder of instructions, scripts, and resources that Claude loads dynamically to get better at a specialized task — it runs within Claude's context. An MCP server is an external program that exposes tools to any MCP client over a shared protocol. Skills teach Claude how to do something; MCP servers give Claude new things to connect to. Our decision guide compares skills, MCP servers, and plugins in depth.
Where can I browse more Claude skills?
Skiln indexes Claude skills alongside MCP servers, agents, and hooks. Start with our guide to what Claude skills are, browse the top skills of 2026, or filter the directory by the skills category to find document, coding, and creative skills.

Stay in the Loop

Join 1,000+ developers. Get the best new Skills & MCPs weekly.

No spam. Unsubscribe anytime.