pdf-to-pptx

pdf-to-pptx is a skill for Claude Code from smartdatabrokers/slideforge-mcp. It costs 71 tokens per session (891 once invoked), scanned A, original, MIT.

A conversion tool that turns a PDF into a PowerPoint presentation whose text, images, tables, and shapes can be edited individually.

In plain words
What is it for?
Use it to make an editable presentation from a PDF report, research paper, or investor deck. It requires the slideforge service.
Why use it?
It removes the need to rebuild a report or research paper manually, instead of receiving a single uneditable screenshot per page.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the slideforge plugin — 4 skills, 1 MCP server shipped together

Good fit Use it to make an editable presentation from a PDF report, research paper, or investor deck. It requires the slideforge service.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/smartdatabrokers/slideforge-mcp/pdf-to-pptx
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 smartdatabrokers/slideforge-mcp --skill pdf-to-pptx
Clone the repo
git clone --depth 1 https://github.com/smartdatabrokers/slideforge-mcp

Made for: Claude Code.

Or install slideforge, the plugin that ships this one along with the rest of its 4 skills, 1 MCP server.

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-to-pptx

README.md
[![agentmods](https://agentmods.dev/badge/skills/smartdatabrokers/slideforge-mcp/pdf-to-pptx/github.svg)](https://agentmods.dev/skills/smartdatabrokers/slideforge-mcp/pdf-to-pptx)
Your own site
<a href="https://agentmods.dev/skills/smartdatabrokers/slideforge-mcp/pdf-to-pptx"><img src="https://agentmods.dev/badge/skills/smartdatabrokers/slideforge-mcp/pdf-to-pptx/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for pdf-to-pptx

Your own site · 80×15
<a href="https://agentmods.dev/skills/smartdatabrokers/slideforge-mcp/pdf-to-pptx"><img src="https://agentmods.dev/badge/skills/smartdatabrokers/slideforge-mcp/pdf-to-pptx.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 891 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.00071 $0.00891
Opus 5 $0.00036 $0.00445
Sonnet 5 $0.00014 $0.00178
Haiku 4.5 $0.00007 $0.00089

Measured 9d ago against content hash 133f94ee4b9e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

pdf-to-pptx 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 9d ago.

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.

skills/pdf-to-pptx/SKILL.md · 92 lines

How it starts

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

PDF to PPTX

Use the slideforge MCP server to convert a PDF into a fully editable PowerPoint deck. Vector extraction — each page becomes a slide where every element is independently editable.

When to trigger

Any request to convert, turn, transform, or extract a PDF into PowerPoint. Examples:

  • "Convert this PDF report into an editable PowerPoint deck"
  • "Turn this 40-page research paper into slides"
  • "Extract the slides from this investor PDF so I can edit them"

Tools used

  • upload_asset with purpose=pdf — uploads and triggers extraction
  • manage_account with action=job — poll for completion + download URL

Workflow

1. Upload the PDF

{
  "purpose": "pdf",
  "data": "<base64-encoded .pdf>",
  "filename": "report.pdf"
}

Returns a job_id. Alternatively, pass a public URL if the user has one.

2. Wait for extraction

Typical speed: ~112-page deck converts end-to-end in ~18 seconds. Poll with:

{"action": "job", "job_id": "<from step 1>"}

Or include a preview inline by setting include_preview: "default" in the upload call (waits then embeds).

3. Deliver

Download via header-auth: GET /v1/jobs/<job_id>/pptx with Authorization: Bearer sf_live_YOUR_KEY (ownership-checked). To hand off a shareable link instead, POST /v1/jobs/<job_id>/download-url mints a short-TTL, single-use, revocable one. The output is a real .pptx — every shape, text block, and image is individually editable in PowerPoint.

What gets extracted cleanly

  • Vector shapes (lines, rectangles, curves)
  • Text with font, size, colour, alignment preserved
  • Tables as PowerPoint tables
  • Images embedded natively
  • Page layout, positioning, z-order

Known limits

  • Only PDFs exported from a slide tool (PowerPoint, Keynote, Google Slides, Canva, LaTeX Beamer, etc.) are supported today — the upload returns a 422 for anything else. Scanned, image-only, and text-document PDFs are not supported yet.
  • Complex SmartArt or animations from the original source (if it came from PPTX → PDF) don't round-trip
  • Very dense CAD-style PDFs may hit shape-count limits

Read the full file on GitHub · 92 lines

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. 9d ago First seen · 92 lines · 71 tokens per session scan A 133f94ee4b9e

Subscribe to this mod's changes

pdf-to-pptx is a skill published in the GitHub repository smartdatabrokers/slideforge-mcp (4 stars, last pushed 10d ago), licensed MIT. It adds 71 tokens to every session and 891 once invoked, about $0.0004 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

n8n-binary-and-data

Handle files and binary data in n8n correctly. Use when working with files, images, PDFs, attachments, uploads or downloads, base64, vision/multimodal input, or when an AI agent needs a file as tool input or output — and whenever the user mentions $binary, binaryPropertyName, "read the PDF", "attach the file", "send…

czlonkowski/n8n-mcp · 135 tokens

markdown-to-pdf

Convert a markdown file to PDF using mistune + reportlab. Use when the user wants to convert a .md file to PDF, or when another skill needs to produce a PDF from markdown output.

staskh/trading_skills · 45 tokens

pdf-guide

Searches and reads Riksarkivet's archival PDF guides (medieval Sweden, governance 1520-1920, Sami history). Use when user asks about Swedish history, archives, medieval charters, governance, Sami, or wants to open/search PDF guides. Provides section-level references with page numbers for citation.

AI-Riksarkivet/ra-mcp · 67 tokens

orchardcore-ai-documents-extractors

Skill for adding PDF and OpenXml text extraction to CrestApps Orchard Core AI Documents. Covers PDF, DOCX, XLSX, PPTX, processor registration, supported file types, upload processing, and extraction troubleshooting. Use this skill when requests mention AI Documents extractors, PDF document processing, OpenXml document…

CrestApps/CrestApps.AgentSkills · 137 tokens

cvx

Create, validate, and render professional CV/resume PDFs from plain YAML using CVX — fully local, no accounts. Use when the user wants to write a CV or resume, convert an existing CV to a maintained format, tailor a CV for a job application, or produce an ATS-safe variant. Covers the cv-content/ YAML schema, the…

hrtips/cvx · 87 tokens

superdocs

Edit, create, restructure, and export styled documents (.docx, PDF, HTML, Markdown, plain text) via the SuperDocs MCP server. Preserves tables, borders, shading, fonts, and inline styling on both edit and export. Use this skill when the user wants to work with formatted documents — drafting NDAs/contracts/SOPs from…

superdocsapp/superdocs-plugin · 105 tokens