KitchenSink4PPT
Everything plus the kitchen sink for Microsoft PowerPoint: an MCP server for .pptx files, engineered not to corrupt. Slides, text, tables, charts, notes, export, and the one thing no other server in the ecosystem does: arbitrary vector graphics as native, editable PowerPoint shapes.
The headline: real graphics, not pictures of graphics
Feed svg_to_shapes any SVG and it compiles into a grouped tree of NATIVE
PowerPoint shapes: custom geometry, gradients, strokes, text, nested groups.
No rasterizing, no external APIs, no PowerPoint install needed to build.
Every shape keeps its own id, so afterward you edit the diagram
semantically: recolor node 7, resize the box, rewrite its label.
Connectors are GLUED. Move the node and the arrows follow, exactly as if a person had drawn the diagram by hand in PowerPoint. The human you hand the deck to can nudge any piece in seconds, with no regeneration round trip.
insert_shape (presets and freeform geometry), insert_connector
(straight, elbow, curved, arrowheads), group_shapes, align_shapes,
distribute_shapes, and set_z_order cover from-scratch diagram building;
export_slide_image renders a PNG so the agent can look at what it made and
fix it.
Install
pip install kitchensink4ppt
MCP config (Claude Desktop, Claude Code, or any MCP client):
{
"mcpServers": {
"powerpoint": {
"command": "ppt-mcp"
}
}
}
Requires Python 3.12+. Everything file-based runs on any OS; PDF and image export prefer PowerPoint via COM on Windows and fall back to LibreOffice headless where available. Nothing ever needs a network connection.
Tiered loading: start light, grow mid-session
The server starts in lite mode: 23 tools, roughly 4.3k tokens of tool context, covering reading, slide CRUD, text, hyperlinks, batch editing, backups, and diagnostics. The other 114 tools are registered but disabled until asked for:
enable_tools(packs=["graphics"])
The tool list grows in place (the server emits tools/list_changed and the
client re-fetches), and the result reports the approximate token cost added
so the tradeoff is visible. disable_tools shrinks the surface again, and
get_workflows ships recipes that name the right pack for each job.
Environment pins for hosts and power users:
| Variable | Effect |
|---|---|
KS4P_MODE |
startup surface: lite (default), full, or a pack list like graphics,com |
KS4P_PACK_POLICY |
auto (default) or locked (enable_tools refuses; surface fixed at startup) |
KS4P_ALLOWED_ROOTS |
opt-in path sandbox; tools refuse to touch files outside these roots |
Pack inventory (138 tools total)
| Pack | Tools | ~Tokens | What is in it |
|---|---|---|---|
| lite core (always on) | 23 | 4.3k | anchored deck view, atomic batch edits, get/find/replace text (live-aware, SmartArt text included), slide insert/delete/duplicate/reorder, placeholder text, hyperlinks (set/remove/list with broken-link detection), info and enumeration, copy, snapshots, backups, diagnose, workflows, enable/disable_tools |
| graphics | 24 | 6.1k | shapes, glued connectors, SVG compiler, one-call diagram generators (timeline, org chart, matrix, cycle, comparison), images, video/audio embed, groups, align/distribute, z-order, text boxes, run formatting, bullets, format painter (copy_format/copy_position), native LaTeX equations |
| tables-charts | 19 | 4.0k | create table, bulk cells, merge/unmerge, row and column insert/delete, borders and fills, widths/heights, 74 built-in styles, CSV/JSON export/import, bar/line/pie/scatter/combo charts with editable data workbooks, chart formatting and data readback |
| design | 25 | 4.8k | create presentation FROM template, apply layouts, theme read AND write (colors, fonts), brand extract/apply, layout guardrail checks, slide size, hide/move slide, autofit report, slide and master/layout backgrounds, full master and layout editing (placeholders, decoration shapes, create_layout), accessibility audit and repair |
| assembly-export | 23 | 3.9k | speaker notes, sections, footers and slide numbers, PDF/PNG/handout export, engine detection, opens-clean validation, text extraction, cross-deck slide copy, deck merge and split, agenda slides, deck statistics, document properties, anonymize, slide-show setup and custom shows |
| transitions-animations | 5 | 0.9k | slide transitions (fade/push/wipe/split/cut/random, millisecond durations, auto-advance) and bounded entrance animations (appear/fade/wipe, click builds, by-paragraph) |
| review | 7 | 1.1k | modern threaded comments: add, threaded replies, resolve, cascade delete, dual-system listing (modern + classic), whole-deck review report, structural deck-to-deck diff (compare_decks) |
| sweeps | 6 | 1.2k | deck-wide sweeps: font inventory/replace (incl. charts and phantom declarations), color remap and literal-to-theme unification, proofing language, whole-deck logo replace, compress/purge |
| com | 2 | 0.2k | PowerPoint status and zombie process check (Windows) |
| com-live | 3 | 0.3k | edit the deck while it is OPEN in the user's PowerPoint: explicit save, scroll-to-slide, session status; eleven file tools route here automatically via live='auto' |
Full surface: about 27.3k tokens if you pin KS4P_MODE=full (numbers from
scripts/measure_surface.py, not hand-math).
Structural table operations on the file itself (merging, inserting and deleting rows AND columns, per-edge borders) exist in no other PowerPoint MCP server; they were previously COM-or-nothing.
Safety story
The same discipline as KitchenSink4Word, applied from day one:
- Atomic validated saves. Every mutation rebuilds the package in memory, validates the payload, then atomically replaces the file. A failed operation leaves the original byte-identical; the file is never absent from its own path, even for an instant.
- Two-slot backups. Before each mutation the current content rotates
into
prev.pptxandanchor.pptxunder a hidden.ks4p-backups/folder.manage_backupslists, restores (undoably), and purges;create_snapshotmakes DTG-stamped permanent keepers. - Byte-identical passthrough. Parts the tool did not touch are written back byte-for-byte, so themes, media, and animations survive edits to other slides untouched.
- Conservative refusals. Ambiguous targets refuse with a candidate
list (no first-match guessing), merged-cell surgery that would split a
span refuses, stale batch anchors refuse the whole batch before anything
mutates. Refusals are structured (
{ok: false, error: {code, message, hint}}) and tell you the exact next call to make. - Sandboxing, opt-in. Set
KS4P_ALLOWED_ROOTSand every path in and out is checked. - Locks. Mutations of one file are serialized in-process and across processes; files open in PowerPoint are refused rather than corrupted.
Maturity
Beta. The file layer (packages, slides, text, graphics, tables, charts,
comments, animations, themes, links, media, notes, masters, equations,
accessibility, deck assembly, sweeps, export) is covered by an 848-test
suite, including validation that generated decks open clean in real
PowerPoint, and the server passes a raw stdio protocol round-trip suite.
Live editing of decks open in PowerPoint ships with its own COM gate
scripts (tests/com_gates/). It has not yet had a long field life; treat
important decks with the respect the backup tools make easy, and expect
fast point releases.
License
AGPL-3.0-only (see LICENSE and NOTICE.md). Free for personal, academic, and open-source use. If you want to embed it in closed-source commercial software, open an issue to discuss a commercial license.
Family
Sibling of KitchenSink4Word (the same engineering for .docx; site).
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kitchensink4ppt-1.0.0.tar.gz.
File metadata
- Download URL: kitchensink4ppt-1.0.0.tar.gz
- Upload date:
- Size: 397.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e27d3ef1d589146b2bed585f538e9e923ea7dfdd6aa34769b597b5b9162619e8
|
|
| MD5 |
cd6101d654658c6f412efb0af641e2f2
|
|
| BLAKE2b-256 |
72c7495883a1627eb523d4725cec1361fe101bad586240665170113889f02594
|
Provenance
The following attestation bundles were made for kitchensink4ppt-1.0.0.tar.gz:
Publisher:
publish.yml on nometalalchemist/KitchenSink4PPT
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
kitchensink4ppt-1.0.0.tar.gz -
Subject digest:
e27d3ef1d589146b2bed585f538e9e923ea7dfdd6aa34769b597b5b9162619e8 - Sigstore transparency entry: 2655668769
- Sigstore integration time:
-
Permalink:
nometalalchemist/KitchenSink4PPT@bc325ac340652a08c0b50119971b644a9f390d8b -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/nometalalchemist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bc325ac340652a08c0b50119971b644a9f390d8b -
Trigger Event:
release
-
Statement type:
File details
Details for the file kitchensink4ppt-1.0.0-py3-none-any.whl.
File metadata
- Download URL: kitchensink4ppt-1.0.0-py3-none-any.whl
- Upload date:
- Size: 428.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f12b9303844712ba77e25caf39006a76483010a36d5c378cb099d59e479c9b5
|
|
| MD5 |
71a62111fee8280d24ca40fe8e8d9829
|
|
| BLAKE2b-256 |
2ff74c19e6d922470c4bea316a337d10bc3cca849ef15830fea9532b6fb685bc
|
Provenance
The following attestation bundles were made for kitchensink4ppt-1.0.0-py3-none-any.whl:
Publisher:
publish.yml on nometalalchemist/KitchenSink4PPT
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
kitchensink4ppt-1.0.0-py3-none-any.whl -
Subject digest:
7f12b9303844712ba77e25caf39006a76483010a36d5c378cb099d59e479c9b5 - Sigstore transparency entry: 2655668859
- Sigstore integration time:
-
Permalink:
nometalalchemist/KitchenSink4PPT@bc325ac340652a08c0b50119971b644a9f390d8b -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/nometalalchemist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bc325ac340652a08c0b50119971b644a9f390d8b -
Trigger Event:
release
-
Statement type: