Loading...
Loading...
Produce a .pptx file on disk (headless) instead of driving a live PowerPoint document — for managed-agent sessions with no open Office app.
npx skill4agent add anthropics/financial-services pptx-authormcp__office__powerpoint_*./out/<name>.pptx./out/python-pptxfrom pptx import Presentation
from pptx.util import Inches, Pt
prs = Presentation("./templates/firm-template.pptx") # if a template is provided
# or: prs = Presentation()
slide = prs.slides.add_slide(prs.slide_layouts[5]) # title-only
slide.shapes.title.text = "Valuation Summary"
# ... add tables / charts / text boxes ...
prs.save("./out/pitch-<target>.pptx")pitch-deck./out/model.xlsx./templates/mcp__office__powerpoint_*