Skip to main content
Glama

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/.

Related MCP server: Office-PowerPoint-MCP-Server

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

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_inspect { path, slide: 12 }  → shape ids and bounds on that slide

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.

A
license - permissive license
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Presentations.AI MCP server — create designed slide decks from a topic, text, or document.

  • MCP server for AgentDocs (agentdocs.eu): read, search, write, comment on & share Markdown docs.

  • Pocket Agent (aipocketagent.com) MCP server — read tools for personas, apps, and product info.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/suprim-corp/pptx-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server