mcpbeat

Pptx

axoviq-ai/pptx

Extract text from Microsoft PowerPoint presentations

737 tokens
context cost
the whole folder, loaded on every use
4
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
856
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/axoviq-ai/synthadoc --skill pptx

The instruction itself

4 sections, as written by the author

PPTX Skill

Extracts text from .pptx files using python-pptx. Each slide is rendered

as a titled section; speaker notes are appended when present.

Setup

pip install python-pptx

Standalone usage

import asyncio
from synthadoc.skills.pptx.scripts.main import PptxSkill

skill = PptxSkill()

async def main():
    result = await skill.extract("/path/to/slides.pptx")
    print(result.text)      # slide titles + body text + speaker notes
    print(result.metadata)  # {"slides": N}

asyncio.run(main())

When this skill is used

  • Source path ends with .pptx
  • User intent contains: powerpoint, presentation, pptx

How to use it

Copy the folder

Take axoviq-ai/pptx from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference pip. Without those the skill loads but fails at the first command.