pptx-mcp
An MCP server for reading and editing PowerPoint files, enabling agents to inspect slides, read text, and edit shapes.
README
pptx-mcp
An MCP server for reading and editing PowerPoint files. Point an agent at a .pptx and it can list the slides, read the
text, edit shapes and check its own work.
Units on every tool are inches, never EMU. Slide numbers are 1-based, matching what PowerPoint shows.
Requirements
Bun 1.3 or newer. The server runs src/index.ts directly, so there is no build step and no dist/.
Install
git clone git@github.com:suprim-corp/pptx-mcp.git
cd pptx-mcp
bun install
Configure
Add the server to your MCP client. Use an absolute path to src/index.ts — the client's working directory is not
necessarily this repository.
{
"mcpServers": {
"pptx": {
"command": "bun",
"args": [
"run",
"/absolute/path/to/pptx-mcp/src/index.ts"
]
}
}
}
For Claude Code this goes in .mcp.json at the root of the project you are working in. Restart the client afterwards,
then check it connected:
claude mcp get pptx
Pass absolute paths for the path argument too, for the same reason.
Tools
| Tool | What it does |
|---|---|
pptx_inspect |
Map a deck, or list one slide's shapes with their ids and bounds |
pptx_read_text |
Read a deck, one slide, its outline or its speaker notes |
pptx_notes |
Read or edit one slide's speaker notes |
pptx_validate |
Check a deck after editing it: package errors, layout warnings |
Each tool has its own page under docs/tools/. The parameter tables there are generated from the server,
so they cannot drift from what the tools actually accept.
Typical flow
Inspecting comes first: every editing tool needs a shape_id, and pptx_inspect is the only tool that reports them.
pptx_inspect { path } → which slide do I want?
pptx_read_text { path, scope: "deck" } → what does the deck say?
pptx_inspect { path, slide: 12 } → shape ids and bounds on that slide
pptx_inspect reports title: null on decks that use plain text boxes instead of layout placeholders, which is most
designer-built decks. When the map is too sparse to tell slides apart,
pptx_read_text with scope: "deck" reads every slide's text, labelled by slide number.
Development
bun test # tests
bun run typecheck # tsc --noEmit; bun strips types without checking them
bun run lint # oxlint
bun run format # oxfmt --write
bun run docs # regenerate parameter tables in docs/tools/
bun run docs:check # fail if they are out of date
bun run typecheck is a separate gate on purpose: Bun executes TypeScript by stripping types, so a type error can pass
the test suite untouched.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.